26 lines
234 B
C++
26 lines
234 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-14.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CWALL_H
|
|
#define DAYDREAM_CWALL_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Wall : Component
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CWALL_H
|