1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Added type initializer blocks

This commit is contained in:
Brian Fiete 2020-10-23 07:48:41 -07:00
parent 9a857cceb3
commit 879b15ecd8
6 changed files with 154 additions and 71 deletions

View file

@ -635,13 +635,14 @@ public:
enum BfMethodType : uint8
{
BfMethodType_Ignore,
BfMethodType_Normal,
BfMethodType_Normal,
BfMethodType_PropertyGetter,
BfMethodType_PropertySetter,
BfMethodType_CtorCalcAppend,
BfMethodType_Ctor,
BfMethodType_CtorNoBody,
BfMethodType_CtorClear,
BfMethodType_Init,
BfMethodType_Dtor,
BfMethodType_Operator,
BfMethodType_Mixin,