summaryrefslogtreecommitdiff
path: root/bulletpattern.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
commit267bebfc227c94f543a39e2aa75fb101bc06932e (patch)
tree40ad8057634ba80aa19c61f57884982fd59f6b56 /bulletpattern.h
parent88b1e9e505dad78fd2c3ff927495d322b11491ca (diff)
Moved engine-sources to seperate subdirectory.
Diffstat (limited to 'bulletpattern.h')
-rw-r--r--bulletpattern.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/bulletpattern.h b/bulletpattern.h
deleted file mode 100644
index 092713e..0000000
--- a/bulletpattern.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef BULLETPATTERN_H
-#define BULLETPATTERN_H
-
-class BulletPattern {
- protected:
- float* bullets;
- int num_bullets;
- int stride;
- public:
- float color_r, color_g, color_b;
-
- BulletPattern();
- virtual void update(unsigned int time, unsigned int step);
- void draw();
-};
-
-#endif