You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
365 B
10 lines
365 B
10 months ago
|
using UnityEngine;
|
||
|
|
||
|
/// <summary>
|
||
|
/// This class represents a single conversation between 2 or more characters / players in the game. The
|
||
|
/// conversation consists of ConversatinEntry items that provide the details of each step of the conversation.
|
||
|
/// </summary>
|
||
|
public class Conversation : ScriptableObject
|
||
|
{
|
||
|
public ConversationEntry[] ConversationLines;
|
||
|
}
|