mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Add IsStatic and IsAbstract to System.Type
This commit is contained in:
parent
e8c763eb20
commit
fdc598b4a2
3 changed files with 28 additions and 1 deletions
|
@ -220,7 +220,10 @@ enum BfTypeFlags
|
|||
BfTypeFlags_Delegate = 0x20000,
|
||||
BfTypeFlags_Function = 0x40000,
|
||||
BfTypeFlags_HasDestructor = 0x80000,
|
||||
BfTypeFlags_GenericParam = 0x100000
|
||||
BfTypeFlags_GenericParam = 0x100000,
|
||||
|
||||
BfTypeFlags_Static = 0x200000,
|
||||
BfTypeFlags_Abstract = 0x400000,
|
||||
};
|
||||
|
||||
enum BfMethodFlags
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue