mirror of
https://github.com/ConjureETS/GameOff2024.git
synced 2026-03-24 05:00:59 +00:00
14 lines
312 B
C#
14 lines
312 B
C#
using GameOff.Quiz;
|
|
using UnityEngine;
|
|
|
|
namespace GameOff.Core
|
|
{
|
|
public abstract class QuizTaker: MonoBehaviour
|
|
{
|
|
[SerializeField] protected string[] answers;
|
|
protected virtual void Start()
|
|
{
|
|
answers = new string[QuizHandler.Instance.QuestionAmount];
|
|
}
|
|
}
|
|
} |