LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DialogueSegment.cs
2023-12-22 18:30:10 -05:00

11 lines
167 B
C#

using System;
[Serializable]
public class DialogueSegment
{
public string bodyText;
public string speakerText = "SAFETY COMPUTER";
public float waitTime = 4f;
}