feat(Dialogue): 实现基本的对话系统
This commit is contained in:
15
Assets/Script/Gameplay/Interface/IDialogue.cs
Normal file
15
Assets/Script/Gameplay/Interface/IDialogue.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
3
Assets/Script/Gameplay/Interface/IDialogue.cs.meta
Normal file
3
Assets/Script/Gameplay/Interface/IDialogue.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6aa3fac9c1bc4bfaa9c14c987146f934
|
||||
timeCreated: 1761189058
|
||||
Reference in New Issue
Block a user