DarkTornado

Emitter Class Example

Jun 5th, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. class Emitter
  2.     {
  3.  
  4.         private ParticleCreationData[] particleCreationData;
  5.         private double[] timers;
  6.         private LinkedList<Particle> particles;
  7.         public Vector2 position;
  8.  
  9.         public int particlesCount
  10.         {
  11.             get
  12.             {
  13.                 return particles.Count;
  14.             }
  15.         }
  16.    }
Advertisement
Add Comment
Please, Sign In to add comment