mirror of https://github.com/zeldaret/botw.git
22 lines
339 B
C++
22 lines
339 B
C++
#pragma once
|
|
|
|
#include <heap/seadDisposer.h>
|
|
#include <prim/seadTypedBitFlag.h>
|
|
|
|
namespace ksys {
|
|
|
|
class DebugInput {
|
|
SEAD_SINGLETON_DISPOSER(DebugInput)
|
|
|
|
public:
|
|
DebugInput() = default;
|
|
virtual ~DebugInput() = default;
|
|
void update();
|
|
|
|
private:
|
|
sead::BitFlag8 mFlags;
|
|
float mLastDelta = 0;
|
|
};
|
|
|
|
} // namespace ksys
|