You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
631 B
27 lines
631 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace TheGameExtreme.IO
|
|
{
|
|
class IOOptions
|
|
{
|
|
string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "file.xml");
|
|
|
|
public void SaveOptionParameter()
|
|
{
|
|
/*if (!File.Exists(path))
|
|
{
|
|
XmlSerializer ser = new XmlSerializer(typeof(bool));
|
|
using (StreamWriter sw = File.CreateText(path))
|
|
{
|
|
sw.WriteLine(swTheme.IsToggled);
|
|
}
|
|
|
|
}*/
|
|
}
|
|
|
|
}
|
|
}
|