16 lines
443 B
C#
16 lines
443 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
/// <summary>
|
|
/// Holds some information for the smiley face on top
|
|
/// </summary>
|
|
public class StateButtonScript : MonoBehaviour {
|
|
|
|
/// <summary>
|
|
/// Different sprites that are used for certain states.
|
|
/// </summary>
|
|
/// <remarks>Should be a dictionary with the different Enums</remarks>
|
|
public Sprite DefaultSprite, WinSprite, ClickedSprite, PressedSprite, LoseSprite;
|
|
|
|
}
|