AceEngine is a 2D graphical engine with which you can write 2D graphical programs or games! This engine is written using the C++ libraries: OpenGL and SDL2.
#
sudo apt-get update && sudo apt-get install git
git clone https://github.com/RedBull4/AceEngine
cd AceEngine && sudo ./configure.sh
mkdir lib && make -f MakeFile
sudo make -f MakeFile install
sudo make -f MakeFile uninstall
Or see the example MakeFile
g++ file.cpp -lAceEngine \
-lSDL2 \
-lSDL2_image \
-lSDL2_ttf -lGL
examples / MakeFile_examples
./usr/include/AceEngine
/usr/x86_64-linux-gnu/libAceEngine.so
ACE::window window;
SDL_Event event;
int main() {
window.create(“AceEngine”, ACE_WINDOW_POS_CENTERED,
ACE::vector2
while (window.is_open()) {
while (SDL_PollEvent(&event)) {
if (window.quit(event))
window.close();
}
window.clear();
window.display();
}
}
This program is free software. You can redistribute it and/or modify.
Contacts: