mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 23:20:53 +01:00
20 lines
466 B
C
20 lines
466 B
C
#pragma once
|
|
|
|
#include "Faction.h"
|
|
|
|
using TiltedPhoques::Vector;
|
|
|
|
struct Factions
|
|
{
|
|
Factions() = default;
|
|
~Factions() = default;
|
|
|
|
bool operator==(const Factions& acRhs) const noexcept;
|
|
bool operator!=(const Factions& acRhs) const noexcept;
|
|
|
|
void Serialize(TiltedPhoques::Buffer::Writer& aWriter) const noexcept;
|
|
void Deserialize(TiltedPhoques::Buffer::Reader& aReader);
|
|
|
|
Vector<Faction> NpcFactions;
|
|
Vector<Faction> ExtraFactions;
|
|
};
|