mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 08:40:53 +01:00
14 lines
No EOL
135 B
C++
14 lines
No EOL
135 B
C++
#pragma once
|
|
|
|
#include "client.h"
|
|
|
|
#include <queue>
|
|
|
|
namespace f4mp
|
|
{
|
|
class Clone
|
|
{
|
|
private:
|
|
std::queue<PlayerData> records;
|
|
};
|
|
} |