move interfaces into root (#185)
This commit is contained in:
parent
f7b55c28ef
commit
df7d41fc37
|
@ -1,6 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using StardewModdingAPI.Reflection;
|
|
||||||
|
|
||||||
namespace StardewModdingAPI.Framework.Reflection
|
namespace StardewModdingAPI.Framework.Reflection
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using StardewModdingAPI.Reflection;
|
|
||||||
|
|
||||||
namespace StardewModdingAPI.Framework.Reflection
|
namespace StardewModdingAPI.Framework.Reflection
|
||||||
{
|
{
|
||||||
|
|
|
@ -2,7 +2,6 @@ using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.Caching;
|
using System.Runtime.Caching;
|
||||||
using StardewModdingAPI.Reflection;
|
|
||||||
|
|
||||||
namespace StardewModdingAPI.Framework.Reflection
|
namespace StardewModdingAPI.Framework.Reflection
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
using StardewModdingAPI.Reflection;
|
namespace StardewModdingAPI
|
||||||
|
|
||||||
namespace StardewModdingAPI
|
|
||||||
{
|
{
|
||||||
/// <summary>Provides simplified APIs for writing mods.</summary>
|
/// <summary>Provides simplified APIs for writing mods.</summary>
|
||||||
public interface IModHelper
|
public interface IModHelper
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace StardewModdingAPI.Reflection
|
namespace StardewModdingAPI
|
||||||
{
|
{
|
||||||
/// <summary>A private field obtained through reflection.</summary>
|
/// <summary>A private field obtained through reflection.</summary>
|
||||||
/// <typeparam name="TValue">The field value type.</typeparam>
|
/// <typeparam name="TValue">The field value type.</typeparam>
|
|
@ -1,6 +1,6 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace StardewModdingAPI.Reflection
|
namespace StardewModdingAPI
|
||||||
{
|
{
|
||||||
/// <summary>A private method obtained through reflection.</summary>
|
/// <summary>A private method obtained through reflection.</summary>
|
||||||
public interface IPrivateMethod
|
public interface IPrivateMethod
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace StardewModdingAPI.Reflection
|
namespace StardewModdingAPI
|
||||||
{
|
{
|
||||||
/// <summary>Simplifies access to private game code.</summary>
|
/// <summary>Simplifies access to private game code.</summary>
|
||||||
public interface IReflectionHelper
|
public interface IReflectionHelper
|
|
@ -3,7 +3,6 @@ using System.IO;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using StardewModdingAPI.Advanced;
|
using StardewModdingAPI.Advanced;
|
||||||
using StardewModdingAPI.Framework.Reflection;
|
using StardewModdingAPI.Framework.Reflection;
|
||||||
using StardewModdingAPI.Reflection;
|
|
||||||
|
|
||||||
namespace StardewModdingAPI
|
namespace StardewModdingAPI
|
||||||
{
|
{
|
||||||
|
|
|
@ -184,9 +184,9 @@
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Inheritance\SGame.cs" />
|
<Compile Include="Inheritance\SGame.cs" />
|
||||||
<Compile Include="Reflection\IPrivateField.cs" />
|
<Compile Include="IPrivateField.cs" />
|
||||||
<Compile Include="Reflection\IPrivateMethod.cs" />
|
<Compile Include="IPrivateMethod.cs" />
|
||||||
<Compile Include="Reflection\IReflectionHelper.cs" />
|
<Compile Include="IReflectionHelper.cs" />
|
||||||
<Compile Include="Version.cs" />
|
<Compile Include="Version.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
Loading…
Reference in New Issue