mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
8 lines
149 B
C#
8 lines
149 B
C#
namespace FSO.UI
|
|
{
|
|
public interface IFSOProgram
|
|
{
|
|
bool InitWithArguments(string[] args);
|
|
bool UseDX { get; set; }
|
|
}
|
|
}
|