https://github.com/hopson97/dotvillage
Based on the game on Scratch, dot village is a city building game.
https://github.com/hopson97/dotvillage
city-builder game simulation
Last synced: 10 months ago
JSON representation
Based on the game on Scratch, dot village is a city building game.
- Host: GitHub
- URL: https://github.com/hopson97/dotvillage
- Owner: Hopson97
- Created: 2021-07-26T21:35:39.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-30T22:42:53.000Z (about 5 years ago)
- Last Synced: 2025-04-19T20:24:42.538Z (over 1 year ago)
- Topics: city-builder, game, simulation
- Language: C++
- Homepage:
- Size: 960 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DotVillage
Mini city building game based on the Scratch game by BIG-RED-BUTTON
Original: https://scratch.mit.edu/projects/2269094/
Gif:

## Building and Running
### Linux
Requires conan w/ bincrafters and cmake.
```sh
python3 -m pip install conan
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
conan remote update bincrafters https://api.bintray.com/conan/bincrafters/public-conan
```
To build, at the root of the project:
```sh
sh scripts/build.sh
```
To run, at the root of the project:
```sh
sh scripts/run.sh
```
To build and run in release mode, simply add the `release` suffix:
```sh
sh scripts/build.sh release
sh scripts/run.sh release
```