Add Screen class + structs.

This commit is contained in:
StackZ
2021-01-13 23:50:33 +01:00
parent 8a55d0e7cb
commit 08d4c32ad9
10 changed files with 280 additions and 9 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
#ifndef SPRITE_HPP
#define SPRITE_HPP
#ifndef _UNIVERSAL_CORE_SPRITE_HPP
#define _UNIVERSAL_CORE_SPRITE_HPP
#include "image.hpp"
@@ -14,7 +14,7 @@ private:
int _x, _y, _priority, _id, _rotationIndex, _paletteAlpha, _width, _height, _rotation;
float _scaleX, _scaleY;
bool _visibility;
u16* _gfx;
u16 *_gfx;
static bool _assigned[2][256];