mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:00:54 +01:00
21 lines
466 B
C
21 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;
|
||
|
|
};
|