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

D3D CElementGen rendering

This commit is contained in:
Jack Andersen
2016-02-16 17:42:27 -10:00
parent 468db3b203
commit 13e3afa72f
14 changed files with 429 additions and 16 deletions

View File

@@ -20,6 +20,8 @@ struct SObjectTag
TResId id = -1;
bool operator!=(const SObjectTag& other) const {return id != other.id;}
bool operator==(const SObjectTag& other) const {return id == other.id;}
SObjectTag() = default;
SObjectTag(FourCC tp, TResId rid) : type(tp), id(rid) {}
};
/**