[raknet] Change RakClient::vftable_48 to RakClient::IsConnected

This commit is contained in:
RD42 2024-01-29 19:31:51 +08:00
parent f5ff8ae676
commit cdce8c7976
3 changed files with 12 additions and 3 deletions

View File

@ -98,9 +98,10 @@ void RakClient::vftable_44()
// TODO: RakClient::vftable_44() (saco 100344A0) (server L: 8069300) (bot W: 402CE0 L: 806CD06)
}
void RakClient::vftable_48()
bool RakClient::IsConnected( void ) const
{
// TODO: RakClient::vftable_48() (saco 100344B0) (server L: 8069310) (bot W: 402CF0 L: 806CD14)
return false;
}
void RakClient::vftable_4C()

View File

@ -37,7 +37,11 @@ public:
void vftable_3C();
void vftable_40();
void vftable_44();
void vftable_48();
/// Returns true if the client is connected to a responsive server
/// \return true if connected to a server
bool IsConnected( void ) const;
void vftable_4C();
void vftable_50();
void vftable_54();

View File

@ -32,7 +32,11 @@ public:
virtual void vftable_3C()=0;
virtual void vftable_40()=0;
virtual void vftable_44()=0;
virtual void vftable_48()=0;
/// Returns true if the client is connected to a responsive server
/// \return true if connected to a server
virtual bool IsConnected( void ) const=0;
virtual void vftable_4C()=0;
virtual void vftable_50()=0;
virtual void vftable_54()=0;