Some light rearranging prior to AnimQueue stuff

This commit is contained in:
2023-09-07 23:50:49 -04:00
parent 5af9741cd5
commit ee0b37725e
7 changed files with 44 additions and 15 deletions

View File

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