public Player(RadGame game, Texture2D texture, Vector2 position) { _game = game; _texture = texture; _boundingBox = new RectangleF(); _boundingBox.XY = position; _boundingBox.Dimensions = PlayerDimensions; }
static void Main() { using (var game = new RadGame()) game.Run(); }