changed network log format, player settings

This commit is contained in:
2025-07-26 00:17:14 -04:00
parent e604c7a437
commit 2302290d34
8 changed files with 126 additions and 27 deletions

View File

@@ -1,5 +1,15 @@
import type KV from "../../persistence/kv.ts";
import type Profile from "../profile.ts";
class ProfileContentManager {
protected profile: Profile;
protected kv: KV;
constructor(profile: Profile, kv: KV) {
this.profile = profile;
this.kv = kv;
}
}
export default ProfileContentManager;