An open API service indexing awesome lists of open source software.

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

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
```