11 lines
167 B
C#
11 lines
167 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class DialogueSegment
|
|
{
|
|
public string bodyText;
|
|
|
|
public string speakerText = "SAFETY COMPUTER";
|
|
|
|
public float waitTime = 4f;
|
|
}
|