示例#1
0
		public Value (int initial)
		{
			Limits = new ValueLimits (0, false, 0, false);
			Initial = initial;
			Current = Initial;
		}
示例#2
0
		public Value (int initial,ValueLimits limits)
		{
			Limits = limits;
			Initial = initial;
			Current = Initial;
		}
示例#3
0
		public Value ()
		{
			Limits = new ValueLimits (0, false, 0, false);
			Initial = 0;
			Current = Initial;
		}