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

Added support for autocomplete inserting property overrides

This commit is contained in:
Brian Fiete 2019-09-29 09:21:51 -07:00
parent ce66b658c4
commit c931f92632
4 changed files with 148 additions and 28 deletions

View file

@ -152,6 +152,33 @@ class Norg
{
return a + b + c + bl.mA;
}
public virtual int Zorf
{
set
{
}
}
public virtual int GetVal()
{
return 99;
}
}
class Norg2 : Norg
{
public override void Zorf
{
set
{
base.Zorf = 123;
}
}
}
struct Blurg