Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
- using CIG;
- using UnityEngine;
-
- public sealed class LevelSpriteAssetCollection : ListAssetCollection<Sprite, LevelSpriteAssetCollection>
- {
- public Sprite GetAsset(int level)
- {
- return base.GetAsset("upgrade_label_" + level.ToString("D2"));
- }
- }
|