Files
GTASource/game/event/EventSource.h

18 lines
274 B
C
Raw Permalink Normal View History

2025-02-23 17:40:52 +08:00
#ifndef INC_EVENT_SOURCE_H
#define INC_EVENT_SOURCE_H
class CEvent;
class CPed;
class CEventSource
{
public:
CEventSource() {}
~CEventSource() {}
static int ComputeEventSourceType(const CEvent& event, const CPed& pedActedOnByEvent);
};
#endif // INC_EVENT_SOURCE_H