Introduced Hangman in DEV-compatible branch

This commit is contained in:
Jerome Coudron
2023-03-19 23:02:50 +00:00
committed by Tibe Habils
parent b5328d0b9d
commit e23de9a2d3
42 changed files with 9049 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
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>();
}