2DGameEngineByRust/.gitignore
cc 83477a7f64 chore: 初始化项目骨架与学习开发计划
- 搭建 Cargo workspace:engine 库 + sandbox 可执行示例,构建/运行通过
- 加入分阶段学习开发计划(Markdown / CSV / xlsx)
- 配置 .gitignore、README、MIT 许可信息

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 20:32:35 +08:00

25 lines
392 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Rust / Cargo 构建产物
/target/
**/target/
# Cargo.lock库不提交但本项目含可执行程序建议提交以锁定依赖版本保留
# 若日后纯做库可改为忽略
# 编辑器 / IDE
.vscode/
.idea/
*.iml
# 操作系统
.DS_Store
Thumbs.db
desktop.ini
# Office 临时/锁文件Excel/Word 打开文档时生成)
~$*
# 调试与临时文件
*.pdb
*.log
*~