https://github.com/zsyty/miner
Simple GUI game using libgraphics
https://github.com/zsyty/miner
gui
Last synced: about 1 year ago
JSON representation
Simple GUI game using libgraphics
- Host: GitHub
- URL: https://github.com/zsyty/miner
- Owner: ZSYTY
- Created: 2019-05-17T04:18:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T18:13:00.000Z (almost 7 years ago)
- Last Synced: 2025-01-15T19:38:26.413Z (over 1 year ago)
- Topics: gui
- Language: C
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 开发指南
1、将项目克隆到本地
```bash
git clone https://github.com/ZSYTY/miner.git
```
2、双击``graphics.dev``使用 Dev-C++ 进行开发,您也可以使用其他任何编辑器
3、暂存您的更改并提交到分支
```bash
git add *
git commit -m "...(本次更改的内容)"
```
4、将分支推送到远程仓库
```bash
git push
```
5、在您每次开发前,请**务必**拉取仓库的最新更改,以保证您的本地文件是最新的
```bash
git pull
```