Ejemplo n.º 1
0
        static void Main(string[] args)
        {
#if DEBUG
            AllocConsole();
#endif
            window = new Window();
            window.Show();
            game = new SilkroadMapEditor(window.renderPanel);
            game.Run();
        }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     #if DEBUG
     AllocConsole();
     #endif
     window = new Window();
     window.Show();
     game = new SilkroadMapEditor(window.renderPanel);
     game.Run();
 }
Ejemplo n.º 3
0
 public Drawing(SilkroadMapEditor game)
     : base(game)
 {
     m_game = game;
 }
Ejemplo n.º 4
0
 public Heightmap(SilkroadMapEditor game)
     : base(game)
 {
     effect = new BasicEffect(game.GraphicsDevice);
     this.m_game = game;
 }
Ejemplo n.º 5
0
 public Drawing(SilkroadMapEditor game)
     : base(game)
 {
     m_game = game;
 }
Ejemplo n.º 6
0
 public Heightmap(SilkroadMapEditor game) : base(game)
 {
     effect      = new BasicEffect(game.GraphicsDevice);
     this.m_game = game;
 }