summaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h
index cdc13e0..e107712 100644
--- a/src/image.h
+++ b/src/image.h
@@ -10,6 +10,9 @@ public:
10 Image( int32_t iWidth, int32_t iHeight ); 10 Image( int32_t iWidth, int32_t iHeight );
11 virtual ~Image(); 11 virtual ~Image();
12 12
13 int getWidth() const;
14 int getHeight() const;
15
13 void clear( uint8_t uColor=0 ); 16 void clear( uint8_t uColor=0 );
14 void set( int32_t x, int32_t y, uint8_t iCol ); 17 void set( int32_t x, int32_t y, uint8_t iCol );
15 18