mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
18 lines
339 B
C
18 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;
|
||
|
|
};
|