예제 #1
0
		public ExpansionInfo( int id, string name, ClientVersion requiredClient, FeatureFlags supportedFeatures, CharacterListFlags charListFlags, int customHousingFlag )
		{
			m_Name = name;
			m_ID = id;
			m_SupportedFeatures = supportedFeatures;
			m_CharListFlags = charListFlags;
			m_CustomHousingFlag = customHousingFlag;
			m_RequiredClient = requiredClient;
		}
예제 #2
0
        private ExpansionInfo(
            int id,
            string name,
            FeatureFlags supportedFeatures,
            CharacterListFlags charListFlags,
            HousingFlags customHousingFlag)
        {
            ID = id;
            Name = name;

            SupportedFeatures = supportedFeatures;
            CharacterListFlags = charListFlags;
            CustomHousingFlag = customHousingFlag;
        }
예제 #3
0
 public ExpansionInfo(
     int id,
     string name,
     ClientFlags clientFlags,
     FeatureFlags supportedFeatures,
     CharacterListFlags charListFlags,
     HousingFlags customHousingFlag)
     : this(id, name, supportedFeatures, charListFlags, customHousingFlag)
 {
     ClientFlags = clientFlags;
 }
예제 #4
0
 public ExpansionInfo(
     int id,
     string name,
     ClientVersion requiredClient,
     FeatureFlags supportedFeatures,
     CharacterListFlags charListFlags,
     HousingFlags customHousingFlag)
     : this(id, name, supportedFeatures, charListFlags, customHousingFlag)
 {
     RequiredClient = requiredClient;
 }
예제 #5
0
 public ExpansionInfo(int id, string name, ClientFlags clientFlags, FeatureFlags supportedFeatures, CharacterListFlags charListFlags, int customHousingFlag)
 {
     this.m_Name = name;
     this.m_ID = id;
     this.m_ClientFlags = clientFlags;
     this.m_SupportedFeatures = supportedFeatures;
     this.m_CharListFlags = charListFlags;
     this.m_CustomHousingFlag = customHousingFlag;
 }