- 移除了.csproj文件 - 更新了.gitignore,添加了.editorconfig - 重构了IBoard和IPiece接口,引入了新的事件处理机制 - 优化了CCBoard、CCPiece等类的实现,使用新的事件驱动模型 - 删除了冗余代码,提高了代码的可读性和可维护性
35 lines
411 B
Plaintext
35 lines
411 B
Plaintext
# Godot 4+ specific ignores
|
|
.godot/
|
|
|
|
# Godot-specific
|
|
*.import
|
|
.import/
|
|
export.cfg
|
|
export_presets.cfg
|
|
|
|
# Imported translations (automatically generated from CSV files)
|
|
*.translation
|
|
|
|
# Mono-specific ignores
|
|
.mono/
|
|
data_*/
|
|
mono_crash.*.json
|
|
|
|
# MyProject specific ignores
|
|
.vscode/
|
|
.vs/
|
|
Bin/
|
|
bin/
|
|
*.aseprite
|
|
*.csproj
|
|
*.sln
|
|
*.error
|
|
*.key*
|
|
.editorconfig
|
|
|
|
# cs project files
|
|
!*.csproj
|
|
|
|
# Test files
|
|
Test/bin
|
|
Test/obj |