xref: /inferno-os/module/scoretable.m (revision 46439007cf417cbd9ac8049bb4122c890097a0fa)
1# only used by tetris currently. this interface will change.
2Scoretable: module {
3	PATH: con "/dis/lib/scoretable.dis";
4	Score: adt {
5		user: string;
6		score: int;
7		other: string;
8	};
9	init: fn(port: int, user, name: string, scorefile: string): (int, string);
10	setscore: fn(score: int, other: string): int;
11	scores: fn(): list of Score;
12};
13