summaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2015-04-29 14:09:51 +0100
committerCharles Forsyth <charles.forsyth@gmail.com>2015-04-29 14:09:51 +0100
commitc2a133065f273c0e4c7c25fc9b09c495ca0a5569 (patch)
treecf42581a0f2beb180f18b2d91f787cb6e0e31535 /module
parentf7f2098b6dcaf5b5470ace38066a9982416d81aa (diff)
remove obsolete module gamer.m
Diffstat (limited to 'module')
-rw-r--r--module/gamer.m16
1 files changed, 0 insertions, 16 deletions
diff --git a/module/gamer.m b/module/gamer.m
deleted file mode 100644
index 0494b1d6..00000000
--- a/module/gamer.m
+++ /dev/null
@@ -1,16 +0,0 @@
-Gamer: module
-{
- PATH: con "/dis/lib/gamer.dis";
-
- Game: adt {
- rf, wf: ref Sys->FD;
- opponent: string;
- player: int;
-
- In: fn(g: self Game) : int;
- Out: fn(g: self Game, i: int);
- Exit: fn(g: self Game);
- };
-
- Join: fn(game: string) : Game;
-};