コード例 #1
0
ファイル: ConfigString.cs プロジェクト: jvlppm/q2Tool
        //[short configType][string message]
        public ConfigString(ConfigStringType configType, int subCode, RawData data)
        {
            ConfigType = configType;
            SubCode = subCode;
            Message = data.ReadString();

            if(Message == string.Empty)
                ConfigType = ConfigStringType.Bad;
        }
コード例 #2
0
ファイル: ConfigString.cs プロジェクト: jvlppm/q2Tool
 public ConfigString(ConfigStringType type, int subCode, string message)
 {
     ConfigType = type;
     SubCode = subCode;
     Message = message;
 }
コード例 #3
0
ファイル: ConfigString.cs プロジェクト: jvlppm/q2Tool
 public ConfigString(ConfigStringType type, string message)
 {
     ConfigType = type;
     Message = message;
 }