A delightfully simple and lightweight 2D game engine for the D programming language.
Find a file
2024-03-05 07:59:55 +02:00
core First. 2024-03-05 07:59:55 +02:00
game First. 2024-03-05 07:59:55 +02:00
vendor/ray First. 2024-03-05 07:59:55 +02:00
.gitignore First. 2024-03-05 07:59:55 +02:00
basic.d First. 2024-03-05 07:59:55 +02:00
dub.json First. 2024-03-05 07:59:55 +02:00
LICENSE First. 2024-03-05 07:59:55 +02:00
README.md First. 2024-03-05 07:59:55 +02:00
TODO.md First. 2024-03-05 07:59:55 +02:00

🍂 Popka

Popka is a lightweight and beginner-friendly 2D game engine for the D programming language. It focuses on providing a simple and easy-to-understand foundation for building 2D games. The game engine is currently under development and is not yet ready for use.

import popka.basic;

void main() {
    openWindow(800, 600);
    while (isWindowOpen) {
        if (Keyboard.q.isPressed) {
            closeWindow();
        }
    }
    freeWindow();
}

Dependencies

Popka requires the raylib library to be installed for full functionality. Please install raylib following the official instructions before using this game engine.

License

The project is released under the terms of the MIT License. Please refer to the LICENSE file.