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