Beispiel #1
0
 public HotSpringRoom(HotSpringRoomInfo info, IHotSpringProcessor processor)
 {
     Info            = info;
     _processor      = processor;
     _guestsList     = new List <GamePlayer>();
     _count          = 0;
     _roomState      = eRoomState.FREE;
     _userForbid     = new List <int>();
     _userRemoveList = new List <int>();
 }
Beispiel #2
0
        //private bool _isHymeneal;
        //public bool IsHymeneal
        //{
        //    get { return _isHymeneal; }
        //    set { _isHymeneal = value; }
        //}

        public HotSpringRoom(HotSpringRoomInfo info, IHotSpringProcessor processor)
        {
            Info = info;

            _processor = processor;

            _guestsList = new List<GamePlayer>();

            _count = 0;

            //_isHymeneal = false;

            _roomState = eRoomState.FREE;

            _userForbid = new List<int>();

            _userRemoveList = new List<int>();

       }