mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 15:26:00 +02:00
Fixes to enum changes, fixed [Checked] debugger interaction
This commit is contained in:
parent
17be9daade
commit
64f117b89f
10 changed files with 116 additions and 24 deletions
|
@ -56,6 +56,13 @@ enum BfProtection : uint8
|
|||
BfProtection_Public,
|
||||
};
|
||||
|
||||
enum BfCheckedKind : int8
|
||||
{
|
||||
BfCheckedKind_NotSet,
|
||||
BfCheckedKind_Checked,
|
||||
BfCheckedKind_Unchecked
|
||||
};
|
||||
|
||||
static bool CheckProtection(BfProtection protection, bool allowProtected, bool allowPrivate)
|
||||
{
|
||||
return (protection == BfProtection_Public) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue