mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
11 lines
236 B
C++
11 lines
236 B
C++
#pragma once
|
|
#include "CHandlingObject.hpp"
|
|
#include "../enums/eHandlingType.hpp"
|
|
|
|
class CBaseSubHandlingData : public CHandlingObject
|
|
{
|
|
public:
|
|
virtual eHandlingType GetHandlingType() = 0;
|
|
virtual void OnPostLoad() = 0;
|
|
|
|
}; |