SEntityEvent

C++
struct SEntityEvent {
  INT_PTR nParam[4];
  float fParam[2];
};
File

IEntity.h

Description

SEntityEvent structure describe event id and parameters that can be sent to an entity.

SEntityEvent::fParam Data Member
C++
float fParam[2];
SEntityEvent::nParam Data Member

Event parameters.

C++
INT_PTR nParam[4];
SEntityEvent::SEntityEvent Constructor ()
C++
SEntityEvent();
SEntityEvent::SEntityEvent Constructor (EEntityEvent)
C++
SEntityEvent(EEntityEvent _event);
SEntityEvent::SEntityEvent Constructor (int, int, int, int, float, float)
C++
SEntityEvent(const int n0, const int n1, const int n2, const int n3, const float f0, const float f1);