5d753babe6
The class currently creates a 8x8 grid of entities with Transform components.
22 lines
256 B
C++
22 lines
256 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-09.
|
|
//
|
|
|
|
#ifndef DAYDREAM_ESTAGECLEARED_H
|
|
#define DAYDREAM_ESTAGECLEARED_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
namespace Events
|
|
{
|
|
struct StageCleared : Event
|
|
{
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //DAYDREAM_ESTAGECLEARED_H
|