diff options
| author | aarne <aarne@cs.chalmers.se> | 2006-05-16 21:10:47 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2006-05-16 21:10:47 +0000 |
| commit | 63f03f8c731f3392e72f92d65b2c200fd342551d (patch) | |
| tree | 612c63b9d96971e5e29a80351f9385482ff4712c /examples/dialogue/LightsProlog.gf | |
| parent | 29d04d8a90e1db9c8cc040ae5d83bdf7c84359cc (diff) | |
field names added to Prolog
Diffstat (limited to 'examples/dialogue/LightsProlog.gf')
| -rw-r--r-- | examples/dialogue/LightsProlog.gf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/dialogue/LightsProlog.gf b/examples/dialogue/LightsProlog.gf index 4a93ee469..82fd43212 100644 --- a/examples/dialogue/LightsProlog.gf +++ b/examples/dialogue/LightsProlog.gf @@ -6,10 +6,10 @@ concrete LightsProlog of Lights = lin Light = ss "light" ; Room = ss "room" ; - SwitchOnIn = ss "switch_on" ; - SwitchOffIn = ss "switch_off" ; - SwitchOn = ss "switch_on" ; - SwitchOff = ss "switch_off" ; + SwitchOnIn = op2 "switch_on" "switch_what" "switch_where" ; + SwitchOffIn = op2 "switch_off" "switch_what" "switch_where" ; + SwitchOn = op1 "switch_on" "switch_what" ; + SwitchOff = op1 "switch_off" "switch_what" ; LivingRoom = ss "living_room" ; Kitchen = ss "kitchen" ; |
