Added: Collectibles now rotate, float up before disapeparing after being picked up.

This commit is contained in:
Foxar
2020-12-07 20:08:11 +01:00
parent 6292c27c50
commit 32422b87eb
3 changed files with 28 additions and 2 deletions
+3 -1
View File
@@ -23,11 +23,13 @@ public:
Collectible();
~Collectible();
void update();
void disappear();
void setActive(u8 b);
u8 isActive();
private:
u8 bActive;
u8 bActive, bDisappearing;
u8 lift;
};
#endif