mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
abstract Map = {
|
|
flags startcat = Query ;
|
|
cat
|
|
Query ; Input ; Place ; Click ;
|
|
fun
|
|
GoFromTo : Place -> Place -> Input ;
|
|
ThisPlace : Click -> Place ;
|
|
QueryInput : Input -> Query ;
|
|
ClickCoord : Int -> Int -> Click ;
|
|
}
|