mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-21 11:55:43 +02:00
Mark a bunch of classes as final
This commit is contained in:
@@ -269,11 +269,12 @@ public:
|
||||
JoystickController joystick;
|
||||
KeyCache keycache;
|
||||
};
|
||||
|
||||
/*
|
||||
Separated input handler
|
||||
Separated input handler implementations
|
||||
*/
|
||||
|
||||
class RealInputHandler : public InputHandler
|
||||
class RealInputHandler final : public InputHandler
|
||||
{
|
||||
public:
|
||||
RealInputHandler(MyEventReceiver *receiver) : m_receiver(receiver)
|
||||
@@ -372,7 +373,7 @@ private:
|
||||
v2s32 m_mousepos;
|
||||
};
|
||||
|
||||
class RandomInputHandler : public InputHandler
|
||||
class RandomInputHandler final : public InputHandler
|
||||
{
|
||||
public:
|
||||
RandomInputHandler() = default;
|
||||
|
Reference in New Issue
Block a user