mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 17:52:39 +00:00
11 lines
207 B
C
11 lines
207 B
C
|
#pragma once
|
||
|
|
||
|
|
||
|
|
||
|
class PlayerInput {
|
||
|
public:
|
||
|
bool isMove(void) const;
|
||
|
bool isMoveDeepDown(void) const;
|
||
|
bool isMoveDeepDownNoSnap(void) const;
|
||
|
bool isNoInput(void) const;
|
||
|
};
|