mafaca / UtinyRipper

GUI and API library to work with Engine assets, serialized and bundle files
MIT License
2.77k stars 426 forks source link

Generating Constructor Inheritance #850

Open inertiave opened 3 years ago

inertiave commented 3 years ago

example

public class Color32TransitionState : TransitionStateCollection<Color32>.TransitionState
{
    public Color32TransitionState(string name, Color32 stateObject)
    {
    }
    }

public Color32Transitions(string[] stateNames)
{
}

must be

public class Color32TransitionState : TransitionStateCollection<Color32>.TransitionState
{
    public Color32TransitionState(string name, Color32 stateObject) : base(name, stateObject)
    {
    }
    }

public Color32Transitions(string[] stateNames) : base(stateNames)
{
}

I tried to extract Therabytes.BetterUI.

ds5678 commented 2 years ago

No promises, but you can try my AssetRipper fork.