15 lines
407 B
C#
15 lines
407 B
C#
|
|
using System;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.Events;
|
||
|
|
|
||
|
|
namespace Script.Gameplay.Interface
|
||
|
|
{
|
||
|
|
public interface IDialogue
|
||
|
|
{
|
||
|
|
public UnityEvent<bool> OnBeginDialogue { get; set; }
|
||
|
|
public UnityEvent<bool> OnEndDialogue { get; set; }
|
||
|
|
public bool IsRoad { get; set; }
|
||
|
|
public int GetDialogueCount { get; set; }
|
||
|
|
public string DialogueContent { get; set; }
|
||
|
|
}
|
||
|
|
}
|