mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-19 07:28:04 +08:00
10 lines
122 B
C++
10 lines
122 B
C++
#pragma once
|
|
#include "fwddec.hpp"
|
|
|
|
class CPedFactory
|
|
{
|
|
public:
|
|
virtual ~CPedFactory() = default;
|
|
CPed *m_local_ped;
|
|
};
|