aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-24 10:46:32 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-24 10:46:32 +0200
commit5447ddd896eb49ea9fd9f9191a277fd1d5730aa3 (patch)
tree96e09b8fb5d757aafef33da50a93204bae54ba9f /src/crepe/Particle.h
parent0b08b742fffa63188c89d760a5aecd55d585403b (diff)
add PR #9 comments as code comments
Diffstat (limited to 'src/crepe/Particle.h')
-rw-r--r--src/crepe/Particle.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crepe/Particle.h b/src/crepe/Particle.h
index 6f689bd..21e691d 100644
--- a/src/crepe/Particle.h
+++ b/src/crepe/Particle.h
@@ -7,6 +7,8 @@ namespace crepe {
class Particle {
public:
Position position;
+ // FIXME: `Position` is an awkward name for a 2D vector. See FIXME comment in
+ // api/Transform.h for fix proposal.
Position velocity;
float lifespan;
bool active;