some syntax and such and adde an editor tool for visualising logs

This commit is contained in:
Sebastian Bularca
2026-04-05 14:49:53 +02:00
parent 31951cfbf8
commit 947c8feb53
7 changed files with 1360 additions and 17 deletions

View File

@@ -2,8 +2,8 @@ using System.Runtime.CompilerServices;
namespace Jovian.InGameLogging {
public readonly struct InGameLogger {
readonly IGameLogStore store;
readonly LogChannel channel;
private readonly IGameLogStore store;
private readonly LogChannel channel;
public InGameLogger(IGameLogStore store, LogChannel channel) {
this.store = store;