aboutsummaryrefslogtreecommitdiff
path: root/source/Bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Bitmap.h')
-rw-r--r--source/Bitmap.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/Bitmap.h b/source/Bitmap.h
deleted file mode 100644
index c4064ad..0000000
--- a/source/Bitmap.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#include<iostream>
-class Bitmap
-{
-public:
- int width, height;
- unsigned char *pixels;
- Bitmap(int width_, int height_);
- ~Bitmap();
- void fill(int r, int g, int b);
- void setPixel(int x, int y, int r, int g, int b);
-};
-