You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
272 B

  1. using System;
  2. using CIG;
  3. using CIG.Translation;
  4. using UnityEngine;
  5. public class FlagAssetCollection : ListAssetCollection<Sprite, FlagAssetCollection>
  6. {
  7. public Sprite GetAsset(Localization.Culture culture)
  8. {
  9. return base.GetAsset(culture.Identifier);
  10. }
  11. }