您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过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. }