22 lines
388 B
C
22 lines
388 B
C
#pragma once
|
|
|
|
/// \file entity_folder.h
|
|
/// \author Folling <mail@folling.io>
|
|
|
|
#include <ikarus/id.h>
|
|
#include <ikarus/macros.h>
|
|
|
|
/// \addtogroup folder Folders
|
|
/// @{
|
|
|
|
IKARUS_BEGIN_HEADER
|
|
|
|
/// \brief A entity folder, storing entities and other entity folders.
|
|
struct IkarusEntityFolder {
|
|
/// \private \brief The id of the entity folder.
|
|
IkarusId id;
|
|
};
|
|
|
|
IKARUS_END_HEADER
|
|
|
|
// @}
|