Examples
Character: someChar
Character: someOtherChar
Room: someRoom{
chars: [someChar, someOtherChar]
// Comma used to separate entries in a list of character objects
image: img_room
Event: "Examine Room" {
display("This is a nice room.",getImage())
// Comma used to separate a list of parameters passed to a function
// Will display the written text together with the image of the someRoom object
}
}