Files
squidout/include/Game/CPad.h
T
PlatinumSkink bda864ac11 Breakout Standard Screen
Meaning bricks, ball, pad, walls bounces, things.
May or may not work as intended.
2015-09-11 15:07:00 +02:00

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