Implement LockedWrapper.GetAnimationQueues

This commit is contained in:
2023-09-08 01:52:30 -04:00
parent ee0b37725e
commit d845eab6f5
4 changed files with 57 additions and 8 deletions

View File

@@ -1,9 +1,12 @@
#pragma once
namespace LuprexCommonTypes {
namespace CommonTypes {
// Array of tangible IDs.
using IdArray = TArray<int64>;
// View of Array of tangible IDs.
using IdView = TArrayView<const int64>;
}
// Array of std::string_view
using StringViewVec = TArray<std::string_view>;
}