| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <prim/seadSafeString.h> |
| 4 | |
| 5 | namespace al { |
| 6 | struct AudioSystemInfo; |
| 7 | class BgmDirector; |
| 8 | struct BgmUserInfo; |
| 9 | |
| 10 | class BgmKeeper { |
| 11 | public: |
| 12 | static BgmKeeper* create(const AudioSystemInfo*, BgmDirector*, const char*); |
| 13 | |
| 14 | BgmKeeper(const AudioSystemInfo*, BgmDirector*, const char*); |
| 15 | |
| 16 | const char* getUserName() const; |
| 17 | void update(); |
| 18 | |
| 19 | private: |
| 20 | BgmDirector* mBgmDirector; |
| 21 | BgmUserInfo* mBgmUserInfo = nullptr; |
| 22 | }; |
| 23 | } // namespace al |
| 24 |