1
0
forked from GitHub/gf-core

extended dialogue example

This commit is contained in:
aarne
2006-05-16 20:44:33 +00:00
parent 5082ebd0f4
commit 29d04d8a90
16 changed files with 369 additions and 34 deletions

View File

@@ -0,0 +1,16 @@
abstract Lights = Dialogue ** {
fun
Light : Kind ;
Room : Kind ;
SwitchOnIn : Oper2 Light Room ;
SwitchOffIn : Oper2 Light Room ;
SwitchOn : Oper1 Light ;
SwitchOff : Oper1 Light ;
LivingRoom : Object Room ;
Kitchen : Object Room ;
MorningMode : Move ;
}