Room constructor.

C# | Visual Basic | Visual C++ |
public Room( int id, string name, int maxUsers, int maxSpectators, bool isTemp, bool isGame, bool isPrivate, bool isLimbo, int userCount, int specCount )

- id (Int32)
- the room id
- name (String)
- the room name
- maxUsers (Int32)
- the maximum number of users that can join the room simultaneously
- maxSpectators (Int32)
- the maximum number of spectators in the room (for game rooms only)
- isTemp (Boolean)
- true if the room is temporary
- isGame (Boolean)
- true if the room is a "game room"
- isPrivate (Boolean)
- true if the room is private (password protected)
- isLimbo (Boolean)
- true if the room is a "limbo room"
- userCount (Int32)
- specCount (Int32)