Spaces:
Runtime error
Runtime error
File size: 285 Bytes
ce81a16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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}");
}
}
}
|