예제 #1
0
파일: User.cs 프로젝트: kof1016/Cluedo
		public User(ISoulBinder binder, GameLobby game_lobby)
		{
			_Binder = binder;
			_GameLobby = game_lobby;

			_Machine = new StageMachine();

			Position = new PlayerPosition();
        }
예제 #2
0
파일: Center.cs 프로젝트: kof1016/Cluedo
		public Center()
		{
			_Updater = new Updater();
			_Hall = new Hall();
			_GameLobby = new GameLobby();
		}
예제 #3
0
파일: Center.cs 프로젝트: kof1016/Cluedo
 public Center()
 {
     _Updater   = new Updater();
     _Hall      = new Hall();
     _GameLobby = new GameLobby();
 }