예제 #1
0
파일: mob.cs 프로젝트: bgare89/OpenBYOND-1
 public Mob(OpenBYONDGame game, Vector2 pos)
 {
     client = game;
     position = pos;
     newpos = pos;
     
 }
예제 #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();
 }
예제 #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();
        }
예제 #4
0
 public Mob(OpenBYONDGame game, Vector2 pos)
 {
     client   = game;
     position = pos;
     newpos   = pos;
 }