Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Property
- {
- public float min; //Minimum initial value.
- public float max; //Maximum initial value.
- public float increase; //The value is increased by this variable every second.
- public float wiggle; //The amount of wiggling.
- public Property(float min, float max, float increase, float wiggle)
- {
- this.min = min;
- this.max = max;
- this.increase = increase;
- this.wiggle = wiggle;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment