bda864ac11
Meaning bricks, ball, pad, walls bounces, things. May or may not work as intended.
29 lines
317 B
C++
29 lines
317 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-10.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CPAD_H
|
|
#define DAYDREAM_CPAD_H
|
|
|
|
#include "Core/Component.h"
|
|
#include "Core/EKeyDown.h"
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Pad : Component
|
|
{
|
|
int Lives;
|
|
int Points;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CPAD_H
|