9 lines
181 B
C++
9 lines
181 B
C++
#pragma once
|
|
|
|
namespace LuprexCommonTypes {
|
|
// Array of tangible IDs.
|
|
using IdArray = TArray<int64>;
|
|
|
|
// View of Array of tangible IDs.
|
|
using IdView = TArrayView<const int64>;
|
|
} |