This commit is contained in:
Aspergerli
2026-03-09 19:18:47 +01:00
commit ade3d0fb01
240 changed files with 12324 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Godot Card Framework Analysis
Analyze specific components of the Godot Card Framework project.
## Usage
```
/godot-analyze [component]
```
## Steps:
1. Read the GDScript files of the requested component to understand structure
2. Analyze related scene (.tscn) files if available
3. Check dependency relationships with other components
4. Review compliance with Godot 4.x best practices
5. Suggest improvements or extension possibilities
## Analysis Targets:
- Card (base card class)
- CardContainer (card container base class)
- Pile (card stack)
- Hand (player hand)
- CardManager (card manager)
- CardFactory (card factory)
- DraggableObject (draggable object)
- DropZone (drop zone)