Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 657 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 657 Bytes

SimGame-Example

Just a simulation game being made in C# with no game engine.
I have to handle every pixel.
It's not finished yet.

What does it do?

• Renders an empty game screen
• Handles time and frames every second, has a max 60 FPS
• Calculates and keeps:
•> Time interval since last frame (deltaTime)
•> Frame Per Second
•> Total time elapsed in app
•> Total frames rendered
• It has various methods to execute code every frame
• Has Logs using the console
• It doesn't crash!

What will be added next update?

• Rendering an environment
• Accepting keyboard Input
• Drawing the world based on a byte matrix