DarkTornado

Particle Class Example

Jun 4th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. class Particle
  2. {
  3.     public Vector2 position; //Position.
  4.         public Color[] color; //Array of colors.
  5.         private float size; //Size
  6.         private float rotation; //Rotation
  7.         private float speed; //Speed
  8.         private float direction; //Direction
  9.     private Texture2D sprite;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment