Ejemplo n.º 1
0
 public Option(String pText, String pDescription, Vector2 pPos, tOption pType)
 {
     text = pText;
     description = pDescription;
     pos = pPos;
     type = pType;
 }
Ejemplo n.º 2
0
 public Option(String pText, String pDescription, Vector2 pPos, tOption pType, int pSelectedOption)
 {
     text = pText;
     description = pDescription;
     pos = pPos;
     type = pType;
     selectedOption = pSelectedOption;
 }
Ejemplo n.º 3
0
 public Option(String pText, String pDescription, Vector2 pPos, tOption pType, ref float pValue)
 {
     text = pText;
     description = pDescription;
     pos = pPos;
     type = pType;
     value = pValue;
 }
Ejemplo n.º 4
0
 public Option(String pText, String pDescription, Vector2 pPos, tOption pType, Color pColor, float pScale)
 {
     text = pText;
     description = pDescription;
     pos = pPos;
     type = pType;
     color = pColor;
     scale = pScale;
     useColor = true;
 }