Files
unity-application/Assets/Hangman/Scripts/HangmanImages.cs
2023-03-19 23:02:50 +00:00

16 lines
470 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
/// <summary>
/// Class for holding all stage images for the hangman minigame
/// </summary>
[CreateAssetMenu(menuName = "Create new Scriptable/HangmanImages")]
public class HangmanImages : ScriptableObject
{
/// <summary>
/// This list will hold all the images for the stages of hangman.
/// </summary>
public List<Sprite> hangmanStages = new List<Sprite>();
}