1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-21 12:49:10 +00:00

Convert custom HeadSpin integer types to standard types from stdint.h

This commit is contained in:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -53,10 +53,10 @@ protected:
plDrawableSpans *fDrawable;
hsTArray<plSharedMesh*> fMeshes;
virtual void ICheckDrawableIndex(UInt8 which);
virtual void ICheckDrawableIndex(uint8_t which);
public:
UInt32 fTargetID;
uint32_t fTargetID;
plInstanceDrawInterface();
virtual ~plInstanceDrawInterface();
@ -73,11 +73,11 @@ public:
void RemoveSharedMesh(plSharedMesh *mesh);
virtual void ReleaseData();
virtual void SetSharedMesh(UInt8 which, plSharedMesh *mesh);
virtual void IClearIndex(UInt8 which);
virtual void SetSharedMesh(uint8_t which, plSharedMesh *mesh);
virtual void IClearIndex(uint8_t which);
plDrawableSpans *GetInstanceDrawable() const { return fDrawable; }
Int32 GetSharedMeshIndex(const plSharedMesh *mesh) const;
int32_t GetSharedMeshIndex(const plSharedMesh *mesh) const;
};