shithub: purgatorio

ref: fb7dd4b3a868cb8987049c95bb32e6425a73c8b9
dir: purgatorio/module/scoretable.m

View raw version
# 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;
};