10 lines
183 B
C
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;
|
|
};
|