You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
359 B

  1. namespace IPA.Loader.Features
  2. {
  3. internal class NoUpdateFeature : Feature
  4. {
  5. public override bool Initialize(PluginLoader.PluginMetadata meta, string[] parameters)
  6. {
  7. return meta.Id != null;
  8. }
  9. public override string InvalidMessage { get; protected set; } = "No ID specified; cannot update anyway";
  10. }
  11. }