Completely remove legacy skill system and tests

This commit is contained in:
2026-05-16 11:20:11 +02:00
parent 1a688394e4
commit fe0f2a079c
125 changed files with 7 additions and 14459 deletions
-32
View File
@@ -1,32 +0,0 @@
'use client';
import { GameStateDebug } from '@/components/game/debug/GameStateDebug';
import { DebugName } from '@/lib/game/debug-context';
import {
SkillDebug,
AttunementDebug,
ElementDebug,
GolemDebug,
PactDebug
} from '@/components/game/debug';
export function DebugTab() {
return (
<DebugName name="DebugTab">
<div className="space-y-4">
<GameStateDebug />
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<AttunementDebug />
<ElementDebug />
</div>
<SkillDebug />
<GolemDebug />
<PactDebug />
</div>
</DebugName>
);
}
DebugTab.displayName = "DebugTab";