Example #1
0
 public VersionArgs(EVersionState e, string s, Action <string> c)
 {
     state    = e;
     sValue   = s;
     callBack = c;
 }
Example #2
0
 public VersionArgs(EVersionState e, float f, Action <string> c)
 {
     state    = e;
     fValue   = f;
     callBack = c;
 }
Example #3
0
 public VersionArgs(EVersionState e, Action <string> c)
 {
     state    = e;
     callBack = c;
 }
Example #4
0
 public VersionArgs(EVersionState e, float f)
 {
     state  = e;
     fValue = f;
 }
Example #5
0
 public VersionArgs(EVersionState e, string s)
 {
     state  = e;
     sValue = s;
 }
Example #6
0
 public VersionArgs(EVersionState e)
 {
     state = e;
 }