Advertisement
Guest User

Untitled

a guest
Apr 20th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace AttemptAtOOPFinal
  8. {
  9.     class GameManager
  10.     {
  11.         public Cage lvlCage = new Cage();
  12.         public Lockers lvlLockers = new Lockers();
  13.         public Maze lvlMaze = new Maze();
  14.  
  15.         public Maniac m = new Maniac();
  16.         public Player p = new Player();
  17.         public Room r = new Room();
  18.         public Scoreboard sc = new Scoreboard();
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement