5d753babe6
The class currently creates a 8x8 grid of entities with Transform components.
27 lines
276 B
C++
27 lines
276 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;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CBRICK_H
|