0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 05:50:44 -05:00
launcher/project/SPT.Launcher/Attributes/NavigationPreCondition.cs

14 lines
357 B
C#

using SPT.Launcher.Models;
using SPT.Launcher.ViewModels;
using ReactiveUI;
using System;
namespace SPT.Launcher.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public abstract class NavigationPreCondition : Attribute
{
public abstract NavigationPreConditionResult TestPreCondition(IScreen Host);
}
}