LeviLamina
Loading...
Searching...
No Matches
TextCharEventResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class TextCharEventResult : int {
6 None = 0,
7 EnterPressed = 1,
8 BackspacePressed = 2,
9 Success = 3,
10 Failed = 4,
11};