mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
17 lines
347 B
C#
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
|
|
}
|
|
}
|