mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
21 lines
534 B
C
21 lines
534 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Structs/ActionEvent.h>
|
||
|
|
|
||
|
|
using TiltedPhoques::Vector;
|
||
|
|
|
||
|
|
struct ActionReplayChain
|
||
|
|
{
|
||
|
|
ActionReplayChain() = default;
|
||
|
|
~ActionReplayChain() = default;
|
||
|
|
|
||
|
|
bool operator==(const ActionReplayChain& acRhs) const noexcept;
|
||
|
|
bool operator!=(const ActionReplayChain& acRhs) const noexcept;
|
||
|
|
|
||
|
|
void Serialize(TiltedPhoques::Buffer::Writer& aWriter) const noexcept;
|
||
|
|
void Deserialize(TiltedPhoques::Buffer::Reader& aReader) noexcept;
|
||
|
|
|
||
|
|
bool ResetAnimationGraph{false};
|
||
|
|
Vector<ActionEvent> Actions;
|
||
|
|
};
|