https://github.com/n1ghtthef0x/kitsunengine
A game engine made by me :D
https://github.com/n1ghtthef0x/kitsunengine
cmake cpp gameengine nintendo-3ds nintendo-ds sdl2 sdl2-image sdl2-mixer
Last synced: 19 days ago
JSON representation
A game engine made by me :D
- Host: GitHub
- URL: https://github.com/n1ghtthef0x/kitsunengine
- Owner: N1ghtTheF0x
- License: other
- Created: 2023-10-24T21:08:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-26T19:55:40.000Z (over 1 year ago)
- Last Synced: 2025-02-08T19:17:45.009Z (2 months ago)
- Topics: cmake, cpp, gameengine, nintendo-3ds, nintendo-ds, sdl2, sdl2-image, sdl2-mixer
- Language: C++
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![KitsunEngine Logo][kitsunengine-logo]
# KitsunEngine
A game engine made by me :D
# Setup
The best way is just to use Visual Studio Code with the C++ Extensions and CMake Extensions. I don't even know if the instructions below work ._.
1. clone this repo and enter this in your console/terminal
```shell
git submodule update --init --recursive
```
2. After you came back from the toilet, you make do the CMake stuff:
```shell
mkdir build
cd build
# You can use "cmake --list-presets" or just look into the "CMakePresets.json" file to see every option
cmake --preset= ..
```
3. Now you can build a build:
```shell
cmake --build ..
```
4. ???
5. profit# Nintendo (3)DS
I'm trying to make this work on a Nintendo DS/3DS but there's no code yet D:
# 3th-Party License Stuff
[SDL2][sdl2-link], [SDL2_image][sdl2_image-link] and [SDL2_mixer-link][sdl2_mixer-link] are all licensed to `zlib License`
[ImGui][imgui-link] is `MIT License`
[Glad][glad-link] is [according to source code][glad-source-link] `Public Domain`, `WTFPL` or `CC0`# License
This project is licensed under [this][license-link] license
[sdl2-link]: https://github.com/libsdl-org/SDL
[sdl2_image-link]: https://github.com/libsdl-org/SDL_image
[sdl2_mixer-link]: https://github.com/libsdl-org/SDL_mixer[imgui-link]: https://github.com/ocornut/imgui
[glad-link]: https://glad.dav1d.de/
[glad-source-link]: https://github.com/Dav1dde/glad[kitsunengine-logo]: ./brand/logo.png
[license-link]: ./LICENSE