added more stub classes for later
This commit is contained in:
parent
733aed160f
commit
4e52a6a507
|
|
@ -17,16 +17,6 @@
|
||||||
public string[] GameDir { get; set; }
|
public string[] GameDir { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* add classes for:
|
|
||||||
*
|
|
||||||
* config
|
|
||||||
* customization
|
|
||||||
* info
|
|
||||||
* reshade
|
|
||||||
*
|
|
||||||
* also change field names for all forms and config read/writes
|
|
||||||
*/
|
|
||||||
public class ClientInfo
|
public class ClientInfo
|
||||||
{
|
{
|
||||||
public ClientInfo()
|
public ClientInfo()
|
||||||
|
|
@ -56,3 +46,29 @@ public class ClientInfo
|
||||||
public bool NoGraphicsOptions { get; set; }
|
public bool NoGraphicsOptions { get; set; }
|
||||||
public string CommandLineArgs { get; set; }
|
public string CommandLineArgs { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Finish classes for:
|
||||||
|
*
|
||||||
|
* config
|
||||||
|
* customization
|
||||||
|
* info
|
||||||
|
* reshade
|
||||||
|
*
|
||||||
|
* also change field names for all forms and config read/writes
|
||||||
|
*/
|
||||||
|
public class Config
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CustomizationConfig
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ProgramInfo
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ReShadeConfig
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue