more dialogue system stuff

This commit is contained in:
2023-02-03 13:02:49 +01:00
parent 0e3124430b
commit 2c804bb95e
9 changed files with 122 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
using Godot;
using System;
public partial class dialog_trigger_area : Area2D
{
[Signal] public delegate void InteractDialogueEventHandler();
[Export(PropertyHint.File, "*json")] string dialogFile;
public void OnInteraction(string playerName)
{
}
}