19 lines
No EOL
280 B
C++
19 lines
No EOL
280 B
C++
#pragma once
|
|
#ifndef ALYSON_HPP
|
|
#define ALYSON_HPP
|
|
|
|
#ifndef ASSETS_PATH
|
|
#define ASSETS_PATH "./assets/"
|
|
#endif
|
|
|
|
#define MANGLE_RES_PATH(path) ASSETS_PATH "/" path
|
|
|
|
#include <stdlib.h>
|
|
|
|
size_t init(size_t task);
|
|
|
|
void update(float dt);
|
|
|
|
void render(float dt);
|
|
|
|
#endif // ALYSON_HPP
|