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