mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
11 lines
133 B
C++
11 lines
133 B
C++
#pragma once
|
|
|
|
class CAdvancedData
|
|
{
|
|
public:
|
|
virtual ~CAdvancedData() = 0;
|
|
|
|
int m_slot;
|
|
int m_index;
|
|
float m_value;
|
|
}; |