mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-20 04:09:16 +00:00
Convert custom HeadSpin integer types to standard types from stdint.h
This commit is contained in:
@ -60,7 +60,7 @@ public:
|
||||
plArmatureBehavior();
|
||||
virtual ~plArmatureBehavior();
|
||||
|
||||
void Init(plAGAnim *anim, hsBool loop, plArmatureBrain *brain, plArmatureModBase *armature, UInt8 index);
|
||||
void Init(plAGAnim *anim, hsBool loop, plArmatureBrain *brain, plArmatureModBase *armature, uint8_t index);
|
||||
virtual void Process(double time, float elapsed);
|
||||
virtual void SetStrength(hsScalar val, hsScalar rate = 0.f); // default instant change
|
||||
virtual hsScalar GetStrength();
|
||||
@ -71,14 +71,14 @@ public:
|
||||
{
|
||||
kBehaviorFlagNotifyOnStop = 0x01,
|
||||
};
|
||||
UInt32 fFlags;
|
||||
uint32_t fFlags;
|
||||
|
||||
protected:
|
||||
plAGAnimInstance *fAnim;
|
||||
plArmatureModBase *fArmature;
|
||||
plArmatureBrain *fBrain;
|
||||
plTimedValue<hsScalar> fStrength;
|
||||
UInt8 fIndex;
|
||||
uint8_t fIndex;
|
||||
|
||||
virtual void IStart();
|
||||
virtual void IStop();
|
||||
|
Reference in New Issue
Block a user