Files
2015-09-23 15:12:18 +02:00

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