#pragma once /// \file entity_scope.h /// \author Folling #include #include /// \addtogroup object_scopes ObjectScopes /// @{ IKARUS_BEGIN_HEADER /// \brief The global scope of all entities. struct IkarusEntityScope { /// \private \brief Empty structs aren't allowed in C, so we need a dummy field. short _dummy; }; /// \brief Creates a entity scope. /// \return The created entity scope. IKA_API IkarusEntityScope ikarus_entity_scope_create(); IKARUS_END_HEADER // @}