26 lines
230 B
C++
26 lines
230 B
C++
//
|
|
// Created by Administrator on 2015-09-10.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CPAD_H
|
|
#define DAYDREAM_CPAD_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Ball : Component
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CPAD_H
|