Files
FESADev/src/fesa/core/ids.hpp
T
2026-06-12 02:25:07 +09:00

26 lines
250 B
C++

#pragma once
namespace fesa::core {
struct NodeId {
int value;
};
struct ElementId {
int value;
};
struct MaterialId {
int value;
};
struct PropertyId {
int value;
};
struct StepId {
int value;
};
} // namespace fesa::core