Example #1
0
        internal void Update(GameTime gameTime, Player localPlayer)
        {
            ControlBar?.Update(localPlayer);

            WndWindowManager.Update(gameTime);
            AptWindowManager.Update(gameTime);
        }
Example #2
0
 internal void Render(DrawingContext2D drawingContext)
 {
     WndWindowManager.Render(drawingContext);
     AptWindowManager.Render(drawingContext);
 }
Example #3
0
 internal void Update(GameTime gameTime)
 {
     WndWindowManager.Update(gameTime);
     AptWindowManager.Update(gameTime);
 }
Example #4
0
 public Scene2D(Game game)
 {
     WndWindowManager = new WndWindowManager(game);
     AptWindowManager = new AptWindowManager(game);
 }