https://github.com/ud0uglas/game2d
simples game in development using SDL2, creating game basic, a project of studies.
https://github.com/ud0uglas/game2d
game game-engine game2d
Last synced: about 1 month ago
JSON representation
simples game in development using SDL2, creating game basic, a project of studies.
- Host: GitHub
- URL: https://github.com/ud0uglas/game2d
- Owner: ud0uglas
- Created: 2023-11-06T23:17:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-23T14:52:51.000Z (12 months ago)
- Last Synced: 2025-06-23T15:46:17.190Z (12 months ago)
- Topics: game, game-engine, game2d
- Language: CMake
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game2d
*simples game in development using [SDL2](https://libsdl.org/), creating game basic, a project of **studies**.*
# Ubuntu dependencies linux
~~~
sudo apt-get install build-essential git make \
pkg-config cmake ninja-build gnome-desktop-testing libasound2-dev libpulse-dev \
libaudio-dev libjack-dev libsndio-dev libx11-dev libxext-dev \
libxrandr-dev libxcursor-dev libxfixes-dev libxi-dev libxss-dev libxtst-dev \
libxkbcommon-dev libdrm-dev libgbm-dev libgl1-mesa-dev libgles2-mesa-dev \
libegl1-mesa-dev libdbus-1-dev libibus-1.0-dev libudev-dev
~~~
[Link dependencies build](https://github.com/libsdl-org/SDL/blob/main/docs/README-linux.md#build-dependencies)
**build linux**
~~~bash
mkdir build
cd build
cmake ..
make
./Game2D
~~~