Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxfirecodes/sagl
A simple Swing-based game library that I wrote back in 2014
https://github.com/foxfirecodes/sagl
Last synced: 5 days ago
JSON representation
A simple Swing-based game library that I wrote back in 2014
- Host: GitHub
- URL: https://github.com/foxfirecodes/sagl
- Owner: foxfirecodes
- Created: 2018-02-02T20:55:43.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T01:27:54.000Z (about 1 year ago)
- Last Synced: 2025-01-01T14:07:10.848Z (5 days ago)
- Language: Java
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stone Age Game Library
> A simple Swing-based game library that I wrote back in 2014
This is a rather limited library, but it is required by [Dark Forest Tower Defense](https://github.com/Rayzr522/Dark-Forest-Tower-Defense), so I figured I would post yet another piece of my coding-history online.
The entire library is Swing-based, using absolutely no external libraries. To a very limited degree, it handles the main game loop, graphics loading, sounds, input, and exceptionally limited UI.
## Installation
To use this library in your project (although I wouldn't suggest it), add the following to your `pom.xml`:
```xml
rayzr-repo
https://cdn.rawgit.com/Rayzr522/maven-repo/master/```
```xml
me.rayzr522
sagl
0.0.1-SNAPSHOT```
Or, to install the library into your local Maven repository, run the following commands:
```bash
$ git clone https://github.com/Rayzr522/SAGL.git
$ cd SAGL
$ mvn
# Stone Age Game Library will now be installed to your local Maven repository
```This means you can now compile projects that require SAGL.