Ejemplo n.º 1
0
 public Mob(OpenBYONDGame game, Vector2 pos)
 {
     client = game;
     position = pos;
     newpos = pos;
     
 }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     OptionSet argparser = new OptionSet() { 
         {"load-dme=", v => LoadObjectTreeFrom(v)}
     };
     argparser.Parse(args);
     using (var game = new OpenBYONDGame())
         game.Run();
 }
Ejemplo n.º 3
0
        static void Main(string[] args)
        {
            OptionSet argparser = new OptionSet()
            {
                { "load-dme=", v => LoadObjectTreeFrom(v) }
            };

            argparser.Parse(args);
            using (var game = new OpenBYONDGame())
                game.Run();
        }
Ejemplo n.º 4
0
 public Mob(OpenBYONDGame game, Vector2 pos)
 {
     client   = game;
     position = pos;
     newpos   = pos;
 }