mirror of
https://github.com/zeldaret/botw
synced 2026-07-07 21:30:57 -04:00
16 lines
213 B
C++
16 lines
213 B
C++
#pragma once
|
|
|
|
#include <heap/seadDisposer.h>
|
|
|
|
namespace ksys {
|
|
|
|
// TODO
|
|
class CookingMgr {
|
|
SEAD_SINGLETON_DISPOSER(CookingMgr)
|
|
CookingMgr();
|
|
// TODO: inline
|
|
~CookingMgr();
|
|
};
|
|
|
|
} // namespace ksys
|