14 lines
383 B
C
14 lines
383 B
C
#ifndef LIGHTKEEPER_GAMECOMPONENTLIST_H
|
|
#define LIGHTKEEPER_GAMECOMPONENTLIST_H
|
|
|
|
#include <components/FirstPersonController.h>
|
|
#include <components/PrintComponent.h>
|
|
#include <components/TriggerLoggerComponent.h>
|
|
|
|
#define LIGHTKEEPER_GAME_COMPONENTS(X) \
|
|
X(FirstPersonController) \
|
|
X(PrintComponent) \
|
|
X(TriggerLoggerComponent)
|
|
|
|
#endif // LIGHTKEEPER_GAMECOMPONENTLIST_H
|