mirror of
https://github.com/Relintai/Documents.git
synced 2024-11-14 10:37:19 +01:00
14 lines
264 B
C#
14 lines
264 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class QuizData {
|
|
public List<QuizEntry> entries = new List<QuizEntry>();
|
|
|
|
public QuizEntry GetNextQuastion()
|
|
{
|
|
return null;
|
|
}
|
|
}
|