mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 13:16:40 +00:00
16 lines
261 B
C++
16 lines
261 B
C++
#include "Kyty/Math/MathAll.h" // IWYU pragma: associated
|
|
#include "Kyty/Math/Rand.h"
|
|
|
|
namespace Kyty::Math {
|
|
|
|
KYTY_SUBSYSTEM_INIT(Math)
|
|
{
|
|
Rand::Init();
|
|
}
|
|
|
|
KYTY_SUBSYSTEM_UNEXPECTED_SHUTDOWN(Math) {}
|
|
|
|
KYTY_SUBSYSTEM_DESTROY(Math) {}
|
|
|
|
} // namespace Kyty::Math
|