mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-19 01:35:14 +00:00
14 lines
227 B
C
14 lines
227 B
C
|
#pragma once
|
||
|
|
||
|
#include "heap/seadDisposer.h"
|
||
|
#include "random/seadRandom.h"
|
||
|
|
||
|
namespace sead
|
||
|
{
|
||
|
class GlobalRandom : public Random
|
||
|
{
|
||
|
SEAD_SINGLETON_DISPOSER(GlobalRandom)
|
||
|
GlobalRandom() = default;
|
||
|
};
|
||
|
} // namespace sead
|