Remove declaration of unimplemented function

This commit is contained in:
Chris Thrasher 2023-11-09 16:41:59 -07:00
parent 39ba64cfc6
commit dcfccbec6e

View File

@ -258,20 +258,6 @@ public:
void display();
private:
////////////////////////////////////////////////////////////
/// \brief Processes an event before it is sent to the user
///
/// This function is called every time an event is received
/// from the internal window (through pollEvent or waitEvent).
/// It filters out unwanted events, and performs whatever internal
/// stuff the window needs before the event is returned to the
/// user.
///
/// \param event Event to filter
///
////////////////////////////////////////////////////////////
bool filterEvent(const Event& event);
////////////////////////////////////////////////////////////
/// \brief Perform some common internal initializations
///