// This file is part of the 64k demo project. // It defines common structures for particle-based effects. #pragma once static const int NUM_PARTICLES = 10000; struct Particle { float pos[4]; float vel[4]; float rot[4]; float color[4]; };