mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
12 lines
255 B
C#
12 lines
255 B
C#
using System;
|
|
using GFramework.Core.Abstractions.Logging;
|
|
|
|
namespace GFramework.Godot.Logging;
|
|
|
|
internal readonly record struct GodotLogRenderContext(
|
|
DateTime Timestamp,
|
|
LogLevel Level,
|
|
string Category,
|
|
string Message,
|
|
string Color);
|