https://github.com/nrednav/game-engine
C++ port of a Java-based 3D Game Engine
https://github.com/nrednav/game-engine
Last synced: 8 months ago
JSON representation
C++ port of a Java-based 3D Game Engine
- Host: GitHub
- URL: https://github.com/nrednav/game-engine
- Owner: nrednav
- Created: 2023-04-23T23:23:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T21:01:30.000Z (almost 2 years ago)
- Last Synced: 2025-08-13T20:22:56.152Z (10 months ago)
- Language: C++
- Homepage:
- Size: 13.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 3D Game Engine
This repository contains a C++ port of the 3D Game Engine that was being
developed in the [OpenGL Tutorial Series](https://www.youtube.com/playlist?list=PLRIWtICgwaX0u7Rf9zkZhLoLuZVfUksDP)
by [ThinMatrix](https://www.youtube.com/channel/UCUkRj4qoT1bsWpE_C8lZYoQ).

## Development
This section will describe how to setup & build the project.
### Dependencies
This project has the following external dependencies:
- [CMake](https://cmake.org/)
- [GLFW3](https://www.glfw.org/)
- [GLEW](https://glew.sourceforge.net/)
- [GLM](https://github.com/g-truc/glm)
- [OpenGL](https://www.opengl.org/)
### Get the source
This project is hosted at: https://github.com/nrednav/game-engine
HTTPS:
```shell
git clone https://github.com/nrednav/game-engine.git
```
SSH:
```shell
git clone git@github.com:nrednav/game-engine.git
```
### Build
```
make build
```
### Run
```
make run
```