15 lines
302 B
C#
15 lines
302 B
C#
using UnityEngine;
|
|
using UdonSharp;
|
|
using System;
|
|
|
|
public class NoPointsQuestion : UdonSharpBehaviour
|
|
{
|
|
public string questionTitle;
|
|
[MultilineAttribute]
|
|
public string questionDescription;
|
|
|
|
public string[] answerInfo;
|
|
|
|
public string[] answerText;
|
|
public int[] answerPoints;
|
|
} |