summaryrefslogtreecommitdiff
path: root/types.bmx
diff options
context:
space:
mode:
Diffstat (limited to 'types.bmx')
-rw-r--r--types.bmx27
1 files changed, 23 insertions, 4 deletions
diff --git a/types.bmx b/types.bmx
index 6622ce4..2f83707 100644
--- a/types.bmx
+++ b/types.bmx
@@ -1,7 +1,26 @@
-' It's all a bit rolly
+' Particle Pinch
'
-Global MASSSIZE:Int=6
-Global MASSRAD:Int=3
+' Copyright 2005 Ian Cowburn
+'
+' $Id$
+'
+Strict
+Import noddybox.vector
+Import noddybox.bitmapfont
+
+Const MASSSIZE:Int=6
+Const MASSRAD:Int=3
+
+Type GameGFX
+ Global font:TBitmapFont
+ Global guifont:TBitmapFont
+ Global star:TImage
+ Global mass:TImage
+ Global collector:TImage
+ Global point:TImage
+ Global particle:Timage
+ Global pointer:TImage
+End Type
Type TMass
Field x:Float
@@ -20,7 +39,7 @@ Type TMass
mass=25
friend=True
inverse=False
- swallow=False
+ swallow=0
End Method
Method Attract(o:TMass)