Exemple #1
0
        protected GameObject(KhvGame game)
        {
            this.game = game;

            Components = new ObjectComponentCollection();

            Destroyed = false;
        }
 protected CharacterEntity(KhvGame game)
     : base(game)
 {
     MotionEngine = new MotionEngine(this);
 }
Exemple #3
0
 protected DrawableGameObject(KhvGame game)
     : base(game)
 {
 }
Exemple #4
0
 protected Player(KhvGame game, PlayerIndex index = PlayerIndex.One)
     : base(game)
 {
     PlayerIndex = index;
 }