mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
13 lines
227 B
C++
13 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
|