Files
GTASource/game/event/EventSource.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

18 lines
274 B
C++

#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