25 lines
455 B
C#
25 lines
455 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class RewardPasses : MonoBehaviour
|
||
|
|
{
|
||
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
||
|
|
public int PassID;
|
||
|
|
public int PassProgress;
|
||
|
|
public Sprite[] Skins;
|
||
|
|
public int[] skinID;
|
||
|
|
public string[] RewardsID;
|
||
|
|
public string[] RewardID;
|
||
|
|
void Start()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
// Update is called once per frame
|
||
|
|
void Update()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|