25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

12 satır
271 B

  1. using System;
  2. using CIG;
  3. using UnityEngine;
  4. public sealed class LevelSpriteAssetCollection : ListAssetCollection<Sprite, LevelSpriteAssetCollection>
  5. {
  6. public Sprite GetAsset(int level)
  7. {
  8. return base.GetAsset("upgrade_label_" + level.ToString("D2"));
  9. }
  10. }