/*
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
{
///
/// Core interface that all plugins must implement
///
public interface IPlugin : V100.IPlugin
{
///
/// Human-readable version string
/// Used for plugin selection and updates
///
public string SoneNewProperty { get; }
}
}
*/