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