Example #1
0
        public GameInput(MirrorEngine theEngine)
            : base(theEngine)
        {
            game = theEngine as Graven;

            playBindings = new InputBinding[Enum.GetValues(typeof(PlayBindings)).Length];
        }
Example #2
0
 static void Main(string[] args)
 {
     using (Graven rpg = new Graven())
     {
         rpg.Run();
     }
 }
Example #3
0
 public GameWorld(MirrorEngine theEngine, String theMap) : base(theEngine, theMap)
 {
     tileTextureSet = tileEngine.resourceComponent.getTextureSet("Tiles");
     game           = theEngine as Graven;
     actorFactory   = new GameActorFactory(this);
 }