F4MP/codigos originales/tiltedcode/Code/client/Events/PreUpdateEvent.h
2026-01-06 18:53:59 +01:00

17 lines
339 B
C

#pragma once
/**
* Register to this event only if you do not use entities,
* this is used to generate the list of valid entities.
*/
struct PreUpdateEvent
{
explicit PreUpdateEvent(const double aDelta)
: Delta(aDelta)
{
}
PreUpdateEvent& operator=(const PreUpdateEvent& acRhs) = default;
double Delta;
};