1#pragma once
2
3#include "heap/seadDisposer.h"
4#include "random/seadRandom.h"
5
6namespace sead
7{
8class GlobalRandom : public Random
9{
10 SEAD_SINGLETON_DISPOSER(GlobalRandom)
11 GlobalRandom() = default;
12};
13} // namespace sead
14