Files
Project-Reboot-3.0/Project Reboot 3.0/NetworkGuid.h
2023-04-05 07:55:28 -04:00

15 lines
187 B
C++

#pragma once
#include "inc.h"
class FNetworkGUID
{
public:
uint32 Value;
friend bool operator==(const FNetworkGUID& X, const FNetworkGUID& Y)
{
return (X.Value == Y.Value);
}
};