mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
fix looting s5, fix mcp skins on <S9, add team map markers to s8+, add nomcp to s5, add something that should fix some issues on a lot of versions
16 lines
176 B
C++
16 lines
176 B
C++
#pragma once
|
|
|
|
#include "SharedPointer.h"
|
|
#include "inc.h"
|
|
|
|
struct ITextData
|
|
{
|
|
|
|
};
|
|
|
|
class FText
|
|
{
|
|
public:
|
|
TSharedRef<ITextData, ESPMode::ThreadSafe> TextData;
|
|
uint32 Flags;
|
|
}; |