Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/julien-marcou/super-secret-project
A small Java 2D game
https://github.com/julien-marcou/super-secret-project
Last synced: 23 days ago
JSON representation
A small Java 2D game
- Host: GitHub
- URL: https://github.com/julien-marcou/super-secret-project
- Owner: Julien-Marcou
- License: mit
- Created: 2014-03-23T18:39:50.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2022-06-08T11:23:11.000Z (over 2 years ago)
- Last Synced: 2023-08-05T11:57:16.872Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Super Secret Projet
===================Juste a small **NOT SECRET** 2D game for those who want to see how a small Java 2D game can be created
In the game you control a soldier ; zombies appear randomly and you can kill themClasses Structure
---------------The class **Main** is just the main
The class **Window** represents the window and contains the framework
The class **Framework** extends the **Canvas** class, it starts the game and represents the logic of one Game Loop
The class **Canvas** is an helper to catch keybord and mouse events for the gameThe class **Game** respresents the logic and the structure of our game, for each frames the
updateGame()
anddraw()
methods are calledThe class **Player** represents the character that you can control
The class **Zombie** represents one of the zombies that the computer control
The class **Fire** represents one of the shots that the player (you) firedThe class **Ressources** is an helper to get ressources (as images)