Ejemplo n.º 1
0
 public static void Main(string[] args)
 {
     AGSEditor.SetupResolver();
     AGSEngineDesktop.Init();
     AGSEditor.Platform = new DesktopEditorPlatform();
     Program.Run();
 }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            // TODO: properly pass parameters
            string asset_path = "Assets/";

            if (args.Length > 0)
            {
                asset_path = args[0];
            }

            AGSEngineDesktop.Init();
            GameStarter.Run(asset_path,
                            Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "/AudioMixerGame/");
        }
Ejemplo n.º 3
0
 public void Init()
 {
     AGSEngineDesktop.Init();
 }
Ejemplo n.º 4
0
 public static void Main(string[] args)
 {
     AGSEngineDesktop.Init();
     FakeAGSTestGameStarter.Run();
 }
Ejemplo n.º 5
0
 public static void Main(string[] args)
 {
     AGSEngineDesktop.Init();
     DemoStarter.Run();
 }
Ejemplo n.º 6
0
 public static void Main(string[] args)
 {
     AGSEngineDesktop.Init();
     GameLoader.Platform = new DesktopEditorPlatform();
     Program.Run();
 }