#pragma once #ifndef ALYSON_HPP #define ALYSON_HPP #ifndef ASSETS_PATH #define ASSETS_PATH "./assets/" #endif #define MANGLE_RES_PATH(path) ASSETS_PATH "/" path int init(); void update(float dt); void render(float dt); #endif // ALYSON_HPP