Power up sprites now show when you hit powerup bricks

This commit is contained in:
tleety
2015-10-12 16:48:04 +02:00
parent 3fef91b8a9
commit 52e2ce567a
6 changed files with 42 additions and 10 deletions
+1
View File
@@ -16,6 +16,7 @@ namespace Components
struct Brick : Component
{
int Score = 50;
//0 = empty, 1 = normal, 2 = multi-brick, 3 = lifebuoy, 4 = sticky, 5 = blaster, 6 = kraken
int Type = 0;
bool Removed = false;
};
+1
View File
@@ -24,6 +24,7 @@
#include "Physics/ECreateParticleSequence.h"
#include "Physics/CCircleShape.h"
#include "Physics/CParticleEmitter.h"
#include "Game/Bricks/CPowerUpBrick.h"
#include "Transform/TransformSystem.h"
#include "Transform/TransformSystem.h"