2021-07-18 16:52:45 +02:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT License.
|
|
|
|
* See COPYING for further information.
|
|
|
|
* ---
|
2024-05-16 23:30:41 +02:00
|
|
|
* Copyright (c) 2011-2024, Lukas Weber <laochailan@web.de>.
|
|
|
|
* Copyright (c) 2012-2024, Andrei Alexeyev <akari@taisei-project.org>.
|
|
|
|
*/
|
2021-07-18 16:52:45 +02:00
|
|
|
|
2021-08-12 23:09:01 +02:00
|
|
|
#pragma once
|
2021-07-18 16:52:45 +02:00
|
|
|
#include "taisei.h"
|
|
|
|
|
|
|
|
#include "stage1/entities.h"
|
|
|
|
#include "stage2/entities.h"
|
|
|
|
#include "stage3/entities.h"
|
|
|
|
#include "stage4/entities.h"
|
|
|
|
#include "stage5/entities.h"
|
|
|
|
#include "stage6/entities.h"
|
|
|
|
|
|
|
|
#define ENTITIES_STAGES(X, ...) \
|
|
|
|
ENTITIES_STAGE1(X, __VA_ARGS__) \
|
|
|
|
ENTITIES_STAGE2(X, __VA_ARGS__) \
|
|
|
|
ENTITIES_STAGE3(X, __VA_ARGS__) \
|
|
|
|
ENTITIES_STAGE4(X, __VA_ARGS__) \
|
|
|
|
ENTITIES_STAGE5(X, __VA_ARGS__) \
|
|
|
|
ENTITIES_STAGE6(X, __VA_ARGS__) \
|
2021-08-14 17:11:38 +02:00
|
|
|
END_OF_ENTITIES
|