1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Added IncludeAllMethods

This commit is contained in:
Brian Fiete 2020-05-01 09:09:35 -07:00
parent fbe2407ffb
commit 93facda6b2
2 changed files with 24 additions and 8 deletions

View file

@ -120,12 +120,14 @@ namespace System
[AttributeUsage(.Class | .Struct | .Interface | .Method | .Constructor)]
public struct AlwaysIncludeAttribute : Attribute
{
bool mAssumeInstantiated;
public bool AssumeInstantiated
{
get { return mAssumeInstantiated; }
set mut { mAssumeInstantiated = value; }
set { }
}
public bool IncludeAllMethods
{
set { }
}
}