LeviLamina
Loading...
Searching...
No Matches
TypedServerNetId.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5template <typename T0, typename T1, int T2>
7public:
8 T1 mRawId;
9 MCAPI static T1 sNextRawId;
10 TypedServerNetId(T1 const& rawId) : mRawId(rawId) {}
11 [[nodiscard]] constexpr explicit operator T1() { return mRawId; }
12};
Definition TypedServerNetId.h:6