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:
parent
ce66b658c4
commit
c931f92632
4 changed files with 148 additions and 28 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue