internal static void InstallEvents() { DlcInstalled_t.Install(x => OnDlcInstalled?.Invoke(x.AppID)); NewUrlLaunchParameters_t.Install(x => OnNewLaunchParameters?.Invoke()); }
internal static void InstallEvents() { Dispatch.Install <DlcInstalled_t>(x => OnDlcInstalled?.Invoke(x.AppID)); Dispatch.Install <NewUrlLaunchParameters_t>(x => OnNewLaunchParameters?.Invoke()); }