28 lines
296 B
C++
28 lines
296 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-09.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CBRICK_H
|
|
#define DAYDREAM_CBRICK_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Brick : Component
|
|
{
|
|
int Points = 10;
|
|
int Hits = 1;
|
|
int Score = 50;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CBRICK_H
|