コード例 #1
0
 public void RegisterIntProperty(string name, int currentvalue, int Min, int Max, SetIntPropertyHandler handler)
 {
     LogFile.WriteLine("RegisterIntProperty " + name);
     PropertyInfos.Add(new IntPropertyInfo(name, currentvalue, Min, Max, handler));
 }
コード例 #2
0
 public IntPropertyInfo(string name, int currentvalue, int min, int max, SetIntPropertyHandler handler)
 {
     this.Name = name; this.Min = min; this.Max = max; this.Handler = handler; InitialValue = currentvalue;
 }
コード例 #3
0
 public IntPropertyInfo( string name, int currentvalue, int min, int max, SetIntPropertyHandler handler )
 {
     this.Name = name; this.Min = min; this.Max = max; this.Handler = handler; InitialValue = currentvalue;
 }
コード例 #4
0
 public void RegisterIntProperty(string name, int currentvalue, int Min, int Max, SetIntPropertyHandler handler)
 {
     LogFile.WriteLine("RegisterIntProperty " + name);
     PropertyInfos.Add(new IntPropertyInfo(name, currentvalue, Min, Max, handler));
 }