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