diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-11 02:22:01 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-11 02:33:28 +0200 |
commit | aed8218ef16679b36e5d869e79128315d9140794 (patch) | |
tree | 67e43ef67838a648c7dc8c39decb4c48b082fea2 /src/render/Particle.h | |
parent | the great reorganization (diff) | |
download | re3-aed8218ef16679b36e5d869e79128315d9140794.tar re3-aed8218ef16679b36e5d869e79128315d9140794.tar.gz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.bz2 re3-aed8218ef16679b36e5d869e79128315d9140794.tar.lz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.xz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.zst re3-aed8218ef16679b36e5d869e79128315d9140794.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Particle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/Particle.h b/src/render/Particle.h index 25677569..eaacf2f5 100644 --- a/src/render/Particle.h +++ b/src/render/Particle.h @@ -6,13 +6,13 @@ class CEntity; class CParticle { +public: enum { RAND_TABLE_SIZE = 20, SIN_COS_TABLE_SIZE = 1024 }; - -public: + CVector m_vecPosition; CVector m_vecVelocity; CVector m_vecScreenPosition; |