Skip to content

Commit c095f15

Browse files
committed
rename for clarity
1 parent d3e23b8 commit c095f15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FluffyEngine/BaseInputDevice.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Fluffy
66
{
77
Pressed,
88
Released,
9-
Previous
9+
Held
1010
};
1111

1212
class BaseInputDevice
@@ -18,7 +18,7 @@ namespace Fluffy
1818

1919
virtual bool IsPressed(unsigned int) = 0;
2020
virtual bool IsReleased(unsigned int) = 0;
21-
virtual bool IsPrevious(unsigned int) = 0;
21+
virtual bool IsHeld(unsigned int) = 0;
2222

2323
virtual void HandleInput() = 0;
2424
};

0 commit comments

Comments
 (0)