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

15 lines
358 B
C

#pragma once
struct World;
struct Actor;
struct FaceGenComponent;
struct Tints;
/**
* @brief Manages the face gen of remote players.
*/
struct FaceGenSystem
{
static void Update(World& aWorld, Actor* apActor, FaceGenComponent& aFaceGenComponent) noexcept;
static void Setup(World& aWorld, entt::entity aEntity, const Tints& acTints) noexcept;
};