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.

21 lines
405 B

  1. using System;
  2. using System.Reflection;
  3. using Version = SemVer.Version;
  4. namespace IPA.Loader
  5. {
  6. internal class PluginLoader
  7. {
  8. public class PluginMetadata
  9. {
  10. public Assembly Assembly;
  11. public Type PluginType;
  12. public string Name;
  13. public Version Version;
  14. }
  15. public static void LoadMetadata()
  16. {
  17. }
  18. }
  19. }