2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Additional vector elements

This commit is contained in:
Jack Andersen
2016-02-06 21:25:34 -10:00
parent 7ae8d21c55
commit 8dbd2f3819
6 changed files with 107 additions and 46 deletions

View File

@@ -12,12 +12,12 @@ namespace Retro
{
using FourCC = HECL::FourCC;
using TResID = u32;
using TResId = u32;
struct SObjectTag
{
FourCC type;
TResID id = -1;
TResId id = -1;
bool operator!=(const SObjectTag& other) const {return id != other.id;}
bool operator==(const SObjectTag& other) const {return id == other.id;}
};