summaryrefslogtreecommitdiff
path: root/game.bmx
diff options
context:
space:
mode:
Diffstat (limited to 'game.bmx')
-rw-r--r--game.bmx20
1 files changed, 20 insertions, 0 deletions
diff --git a/game.bmx b/game.bmx
new file mode 100644
index 0000000..0df53c5
--- /dev/null
+++ b/game.bmx
@@ -0,0 +1,20 @@
+' Hardwire
+'
+' Copyright 2005 Ian Cowburn
+'
+' $Id$
+'
+Strict
+Import "types.bmx"
+Import "gametypes.bmx"
+
+Type TGame
+ Field score:Int
+ Field gm:TGameMap
+
+ Method New()
+ score=0
+ gm=New TGameMap
+ End Method
+End Type
+