fix(netPlayer): Fix destructor can't have return type

This commit is contained in:
Yimura 2022-01-28 00:59:48 +01:00
parent e77e24fbe0
commit 17106cd848
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -6,7 +6,7 @@ namespace rage
class netPlayer class netPlayer
{ {
public: public:
virtual void ~netPlayer(); virtual ~netPlayer();
virtual void reset(); virtual void reset();
virtual bool is_valid(); virtual bool is_valid();
virtual const char* get_name(); virtual const char* get_name();