Skip to content

Commit

Permalink
feat: add Side and SignTextSide enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Dofes committed Jan 9, 2024
1 parent 5da3a53 commit 2225ecf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/mc/enums/Side.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

#include "mc/_HeaderOutputPredefine.h"

enum class Side {};
enum class Side : int {
Left = 0x0,
Right = 0x1,
};
5 changes: 4 additions & 1 deletion src/mc/enums/SignTextSide.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

#include "mc/_HeaderOutputPredefine.h"

enum class SignTextSide {};
enum class SignTextSide : int {
Front = 0x0,
Back = 0x1,
};

0 comments on commit 2225ecf

Please sign in to comment.