DarkTornado

Particle Creation Data

Jun 5th, 2011
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. public class ParticleCreationData
  2.         {
  3.             public int amount;
  4.             public ParticleData type;
  5.  
  6.             public ParticleCreationData(int amount, ParticleData type)
  7.             {
  8.                 this.amount = amount;
  9.                 this.type = type;
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment