F4MP/codigos originales/tiltedcode/Code/client/Systems/CacheSystem.h
2026-01-06 18:53:59 +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;
};