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