Exemplo n.º 1
0
 public RantFunctionParameter(string name, Type nativeType, RantFunctionParameterType rantType, bool isParams = false)
 {
     Name        = Util.CamelToSnake(name);
     NativeType  = nativeType;
     RantType    = rantType;
     IsParams    = isParams;
     Description = string.Empty;
 }
Exemplo n.º 2
0
 public RantFunctionParameter(string name, Type nativeType, RantFunctionParameterType rantType, bool isParams = false)
 {
     Name        = name;
     NativeType  = nativeType;
     RantType    = rantType;
     IsParams    = isParams;
     Description = String.Empty;
 }