Plugins: Define IPlugin and IPluginOption interfaces
This commit is contained in:
25
Il2CppInspector.Common/Plugins/API/V101/IPlugin.cs
Normal file
25
Il2CppInspector.Common/Plugins/API/V101/IPlugin.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
Copyright 2020 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
|
||||
|
||||
All rights reserved.
|
||||
*/
|
||||
|
||||
/// This is an example for future use of how to create a new backwards-compatible API version
|
||||
|
||||
using System.Collections.Generic;
|
||||
/*
|
||||
namespace Il2CppInspector.PluginAPI.V101
|
||||
{
|
||||
/// <summary>
|
||||
/// Core interface that all plugins must implement
|
||||
/// </summary>
|
||||
public interface IPlugin : V100.IPlugin
|
||||
{
|
||||
/// <summary>
|
||||
/// Human-readable version string
|
||||
/// Used for plugin selection and updates
|
||||
/// </summary>
|
||||
public string SoneNewProperty { get; }
|
||||
}
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user