mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
19 lines
276 B
C++
19 lines
276 B
C++
#pragma once
|
|
|
|
#include "Bitmap.h"
|
|
|
|
namespace Javelin {
|
|
|
|
class AlphaBitmap : public Bitmap {
|
|
public:
|
|
AlphaBitmap(int w, int h)
|
|
: Bitmap(w, h, 1) {
|
|
}
|
|
|
|
const unsigned char *GetData() const { return data; }
|
|
|
|
unsigned char *GetData() { return data; }
|
|
};
|
|
|
|
}
|