2023-09-14 12:34:51 +00:00
|
|
|
#include "src/Loader.hpp"
|
|
|
|
|
|
|
|
#include "io.hpp"
|
2023-09-14 15:35:39 +00:00
|
|
|
#include "rand.hpp"
|
2023-09-14 12:34:51 +00:00
|
|
|
|
|
|
|
extern "C" void lib(grino::Loader& loader)
|
|
|
|
{
|
|
|
|
lib_io(loader);
|
2023-09-14 15:35:39 +00:00
|
|
|
lib_rand(loader);
|
2023-09-14 12:34:51 +00:00
|
|
|
}
|