quantum-space-buddies/QSB/ConversationSync/WorldObjects/QSBCharacterDialogueTree.cs
2022-05-13 22:38:06 +01:00

17 lines
347 B
C#

using QSB.WorldSync;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QSB.ConversationSync.WorldObjects;
public class QSBCharacterDialogueTree : WorldObject<CharacterDialogueTree>
{
public override void SendInitialState(uint to)
{
// todo : implement this
}
}