您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

21 行
718 B

  1. using System;
  2. using CIG;
  3. using CIGEnums;
  4. using UnityEngine;
  5. public sealed class BuildingPropertyAssetCollection : DictionaryAssetCollection<BuildingPropertyAssetCollection.BuildingPropertyAssets, BuildingProperty, BuildingPropertyAssetCollection.BuildingPropertyItem, BuildingPropertyAssetCollection>
  6. {
  7. [Serializable]
  8. public class BuildingPropertyAssets : DictionaryAssetCollection<BuildingPropertyAssetCollection.BuildingPropertyAssets, BuildingProperty, BuildingPropertyAssetCollection.BuildingPropertyItem, BuildingPropertyAssetCollection>.SerializableDictionary
  9. {
  10. }
  11. [Serializable]
  12. public struct BuildingPropertyItem
  13. {
  14. public string LocalizationKey;
  15. public Sprite IconSprite;
  16. }
  17. }