diff options
author | Stephen Simpson <megazig@gmail.com> | 2011-10-14 17:02:24 -0500 |
---|---|---|
committer | Stephen Simpson <megazig@gmail.com> | 2011-10-14 17:02:24 -0500 |
commit | 2aa6c935e2996c001079922863bcc4e62b6b0f61 (patch) | |
tree | ffb4df97d2b40ad595f3c0aa81b9e2dcd061ac97 /include/g3dhax.h | |
parent | dd010814367f49a742bca1d5ef3b23765240b373 (diff) | |
download | kamek-2aa6c935e2996c001079922863bcc4e62b6b0f61.tar.gz kamek-2aa6c935e2996c001079922863bcc4e62b6b0f61.zip |
moved setNewCollisionRect to player.h so multiple actors can call it
updated MG with attempted fixes for anmChr
changed banm_c's _setUpdateRate and others to public for anmChr
Diffstat (limited to '')
-rw-r--r-- | include/g3dhax.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/g3dhax.h b/include/g3dhax.h index f2cdd29..d4aa9a0 100644 --- a/include/g3dhax.h +++ b/include/g3dhax.h @@ -257,12 +257,12 @@ namespace m3d { void *frameHeap; // should be a frame heap mAllocator_c allocator; + float getCurrentFrame(); + float setCurrentFrame(float value); + float getUpdateRate(); + float setUpdateRate(float value); private: void setupHeap(mAllocator_c *allocator, u32 *sizeOutput); - float _getCurrentFrame(); - float _setCurrentFrame(float value); - float _getUpdateRate(); - float _setUpdateRate(float value); }; class fanm_c : public banm_c { |