// AUTHORED SHIM (not copied). Parameterless ctors for generated Vfx BASE types whose // decomp only declares parameterized ctors. A net-new generated derived stub's ctor is // emitted as `{ }` with an implicit `base()` call (m1_stub_gen doesn't thread base args), // so when the base lacks a parameterless ctor the derived fails CS7036. These no-op // parameterless ctors satisfy the implicit base() — purely a compile aid, off battle path. // (If this recurs broadly, teach m1_stub_gen to emit a guarded no-op parameterless ctor.) namespace Wizard.Battle.View.Vfx { public partial class ForecastIconVfxBase { protected ForecastIconVfxBase() { } } public partial class ShowChantCountVfx { public ShowChantCountVfx() { } } public partial class EvolveVfx { public EvolveVfx() { } } }