diff options
author | JosiahWI <josiah_vanderzee@mediacombb.net> | 2021-11-09 13:47:54 -0600 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-11-24 22:06:12 +0100 |
commit | d4119ba6640fa96eb0587b46c4a64c2e818818a8 (patch) | |
tree | d60155aebde25019889fa85411eaee0a5117d8d9 /include/IRandomizer.h | |
parent | 2f2d37dce6448715b4154b8c6358289e18ebdf9d (diff) | |
download | irrlicht-d4119ba6640fa96eb0587b46c4a64c2e818818a8.tar.xz |
Remove unused functions
renderLine16_Blend(), renderLine16_Decal(), renderLine32_Blend(), renderLine32_Decal()
clipLine()
frand()
drawRectangle() and drawLine()
remove unused private fields
Diffstat (limited to 'include/IRandomizer.h')
-rw-r--r-- | include/IRandomizer.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/IRandomizer.h b/include/IRandomizer.h index a0c0730..e821190 100644 --- a/include/IRandomizer.h +++ b/include/IRandomizer.h @@ -21,9 +21,6 @@ public: //! generates a pseudo random number in the range 0..randMax()
virtual s32 rand() const =0;
- //! generates a pseudo random number in the range 0..1
- virtual f32 frand() const =0;
-
//! get maxmimum number generated by rand()
virtual s32 randMax() const =0;
};
|