Files

18 lines
321 B
C++

#pragma once
#include <fesa/core/entity_id.hpp>
namespace fesa {
struct NodeTag;
struct ElementTag;
struct MaterialTag;
struct SectionTag;
using NodeId = EntityId<NodeTag>;
using ElementId = EntityId<ElementTag>;
using MaterialId = EntityId<MaterialTag>;
using SectionId = EntityId<SectionTag>;
} // namespace fesa