https://github.com/techno-coder/battlecode21
https://github.com/techno-coder/battlecode21
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/techno-coder/battlecode21
- Owner: Techno-coder
- License: agpl-3.0
- Created: 2021-01-14T09:42:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T08:58:46.000Z (almost 5 years ago)
- Last Synced: 2025-02-08T18:12:39.335Z (10 months ago)
- Language: Java
- Size: 82 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Battlecode 2021 Scaffold
This is the Battlecode 2021 scaffold, containing an `example`. Read https://2021.battlecode.org/getting-started!
### Project Structure
- `README.md`
This file.
- `build.gradle`
The Gradle build file used to build and run players.
- `src/`
Player source code.
- `test/`
Player test code.
- `client/`
Contains the client. The proper executable can be found in this folder (don't move this!)
- `build/`
Contains compiled player code and other artifacts of the build process. Can be safely ignored.
- `matches/`
The output folder for match files.
- `maps/`
The default folder for custom maps.
- `gradlew`, `gradlew.bat`
The Unix (OS X/Linux) and Windows versions, respectively, of the Gradle wrapper. These are nifty scripts that you can execute in a terminal to run the Gradle build tasks of this project. If you aren't planning to do command line development, these can be safely ignored.
- `gradle/`
Contains files used by the Gradle wrapper scripts. Can be safely ignored.
### Useful Commands
- `./gradlew run`
Runs a game with the settings in gradle.properties
- `./gradlew update`
Update to the newest version! Run every so often