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