/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (GameController game = new GameController()) { game.Run(); } }
public FilmCard(Vector2 pos, Vector2 size, GameController gc) { gameController = gc; position = pos; this.size = size; offset = Vector2.Zero; backgroundRectangle = new RectangleOverlay(new Rectangle((int)position.X, (int)position.Y, (int)size.X , (int)size.Y), Color.PaleGreen, gc); }
public MainMenu(GameController gc) { gameController = gc; }
public FilmList(GameController gc) { gameController = gc; }