Files
dota_factory/src/lib/ecs/component/ModuleOwnerComponent.h

10 lines
183 B
C

#pragma once
#include "entt/entity/entity.hpp"
// Links a capability module child entity back to its owner ship or station.
struct ModuleOwnerComponent
{
entt::entity owner;
};