All checks were successful
Build project / Build for (StandaloneLinux64, 6000.0.37f1) (push) Successful in 5m17s
Build project / Build for (StandaloneWindows64, 6000.0.37f1) (push) Successful in 5m19s
Build project / Publish to itch.io (StandaloneLinux64) (push) Successful in 5s
Build project / Publish to itch.io (StandaloneWindows64) (push) Successful in 5s
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;
|
|
|
|
}
|