ref: 254b07675e1a5348f2a8723f55e6b5b1b18a4721
dir: /module/scoretable.m/
# only used by tetris currently. this interface will change.
Scoretable: module {
PATH: con "/dis/lib/scoretable.dis";
Score: adt {
user: string;
score: int;
other: string;
};
init: fn(port: int, user, name: string, scorefile: string): (int, string);
setscore: fn(score: int, other: string): int;
scores: fn(): list of Score;
};