Ejemplo n.º 1
0
void GetRoomPropertyText (const char *property, char *bufer) {
    get_text_property (&thisroom.roomProps, property, bufer);
}
Ejemplo n.º 2
0
void InventoryItem_GetPropertyText(ScriptInvItem *scii, const char *property, char *bufer) {
    get_text_property(game.invProps[scii->id], play.invProps[scii->id], property, bufer);
}
Ejemplo n.º 3
0
void GetHotspotPropertyText (int item, const char *property, char *bufer)
{
    get_text_property(thisroom.hsProps[item], croom->hsProps[item], property, bufer);
}