Exemplo n.º 1
0
        public static string GetVariableType(WorldParameterType type)
        {
            switch (type)
            {
            case WorldParameterType.StateVariable: return("State");

            case WorldParameterType.ActionVariable: return("Action");

            case WorldParameterType.Constant: return("Constant");
            }
            return(null);
        }
Exemplo n.º 2
0
 public WorldParser(WorldParameterType type, string srcTag) : base(srcTag, false)
 {
     m_type = type;
 }
Exemplo n.º 3
0
 public WorldParser(WorldParameterType type, string srcTag)
     : base(srcTag, false)
 {
     m_type = type;
 }