F4MP/tiltedcode/Code/client/Systems/CacheSystem.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

17 lines
367 B
C

#pragma once
struct World;
struct Actor;
/**
* @brief Used to cache data to compare against the current data.
*
* This prevents an unnecessary amount of data usage.
*/
struct CacheSystem
{
/**
* @brief Sets up the cache for the relevant systems per actor.
*/
static void Setup(World& aWorld, entt::entity aEntity, Actor* apActor) noexcept;
};