quantum-space-buddies/QSB/ConversationSync/WorldObjects/QSBCharacterDialogueTree.cs
2022-08-02 17:38:14 -07:00

17 lines
367 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??? does it need it?
}
}