LeviLamina
Loading...
Searching...
No Matches
DispatchResultCode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::PubSub {
6
7enum class DispatchResultCode : uchar {
8 Cancelled = 1,
9 Deferred = 2,
10};
11
12}