27 lines
276 B
C++
27 lines
276 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-10.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CBALL_H
|
|
#define DAYDREAM_CBALL_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Ball : Component
|
|
{
|
|
int Number = 0;
|
|
float Speed = 5.f;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CBALL_H
|