rename object ID method to match existing

This commit is contained in:
jadebenn
2024-12-17 00:57:25 -06:00
parent b9e4aa5344
commit ae4d9c4bcb
2 changed files with 6 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ namespace dECS {
using StorageConstructor = std::function<std::unique_ptr<IStorage>()>;
[[nodiscard]]
constexpr LWOOBJID Id() const noexcept {
constexpr LWOOBJID GetObjectID() const noexcept {
return m_Id;
}