2025-08-11 19:36:09 +02:00

10 lines
292 B
C#

using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace ImGuiNET.SampleProgram.XNA;
public interface GameObject
{
void Update(GameTime gameTime, GraphicsDevice graphicsDevice);
void Draw(GameTime gameTime, SpriteBatch spriteBatch, Rectangle windowBounds);
}