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