custom-chatbot / data /DebugService.cs
fastx's picture
Upload 84 files
ce81a16
raw
history blame
285 Bytes
using System;
namespace Quantum
{
[Serializable]
public unsafe partial class DebugService : BTService
{
public string Message;
protected unsafe override void OnUpdate(BTParams btParams)
{
Log.Info($"[BT SERVICE] { Message } | Frame: {btParams.Frame.Number}");
}
}
}