quantum-space-buddies/QSB/ConversationSync/WorldObjects/QSBCharacterDialogueTree.cs

17 lines
367 B
C#
Raw Normal View History

2022-05-13 21:38:06 +00:00
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)
{
2022-08-03 00:38:14 +00:00
// todo : implement this??? does it need it?
2022-05-13 21:38:06 +00:00
}
}