Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ParticleCreationData
- {
- public int amount;
- public ParticleData type;
- public ParticleCreationData(int amount, ParticleData type)
- {
- this.amount = amount;
- this.type = type;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment