Examples
Room: room{
chars: [
someChar,
someChar2
]
// Assigning characters to room doing declaration
Event: Game_Start {
// Prints a list of all characters in the room to the console
foreach (Characters in chars as char)
print(char.getName())
// Prints player name to the console if player is in room
if(player.currentRoom() == this)
print(player.getName())
}
}
Character: someChar
Character: someChar2