mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:00:54 +01:00
17 lines
241 B
C
17 lines
241 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Dispatched on every frame.
|
||
|
|
*
|
||
|
|
* All entities are safe to access during this event.
|
||
|
|
*/
|
||
|
|
struct UpdateEvent
|
||
|
|
{
|
||
|
|
explicit UpdateEvent(const double aDelta)
|
||
|
|
: Delta(aDelta)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
double Delta;
|
||
|
|
};
|