Formatting/cleanup

This commit is contained in:
Terry Hearst 2023-10-06 20:23:48 -04:00
parent efd0696145
commit 41a1e75946
9 changed files with 18 additions and 20 deletions

8
.editorconfig Normal file
View file

@ -0,0 +1,8 @@
# https://editorconfig.org/
root = true
[*.cs]
insert_final_newline = true
indent_style = tab
tab_width = 4

View file

@ -1,5 +1,4 @@
using MIU; using MIU;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using UnityEngine; using UnityEngine;

View file

@ -1,5 +1,4 @@
using HarmonyLib; using HarmonyLib;
using System;
using System.IO; using System.IO;
using System.Reflection; using System.Reflection;
using UnityEngine; using UnityEngine;

View file

@ -1,6 +1,5 @@
using HarmonyLib; using HarmonyLib;
using MIU; using MIU;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using UnityEngine; using UnityEngine;

View file

@ -1,8 +1,6 @@
using HarmonyLib; using HarmonyLib;
using MIU; using MIU;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using UnityEngine;
namespace CustomCosmeticLoader.Patches namespace CustomCosmeticLoader.Patches
{ {

View file

@ -1,7 +1,5 @@
using HarmonyLib; using HarmonyLib;
using MIU; using MIU;
using Parse.Common.Internal;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using UnityEngine; using UnityEngine;
@ -56,7 +54,7 @@ namespace CustomCosmeticLoader.Patches
return; return;
skin = Config.skins[Config.otherPlayers[controller.nickname]]; skin = Config.skins[Config.otherPlayers[controller.nickname]];
} }
} }
else else
{ {
if (MarbleManager.Replaying) if (MarbleManager.Replaying)

View file

@ -1,5 +1,4 @@
using HarmonyLib; using HarmonyLib;
using System;
using UnityEngine; using UnityEngine;
namespace CustomCosmeticLoader.Patches namespace CustomCosmeticLoader.Patches

View file

@ -1,6 +1,4 @@
using System; using UnityEngine;
using System.Runtime.Remoting.Messaging;
using UnityEngine;
namespace CustomCosmeticLoader namespace CustomCosmeticLoader
{ {

View file

@ -1,10 +1,10 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<!--remove this property--> <!-- Remove this property -->
<UserPropertiesNotSetUp>True</UserPropertiesNotSetUp> <UserPropertiesNotSetUp>True</UserPropertiesNotSetUp>
<!--Insert path to MIUU game directory here--> <!-- Insert path to MIUU game directory here -->
<GameDir></GameDir> <GameDir></GameDir>
<!--Insert path to where your mod should build to (it will build to "out" directory by default)--> <!-- Change path if you want to change to where the mod should build -->
<ModOutputDir>$(GameDir)\Mods\CustomCosmeticLoader</ModOutputDir> <ModOutputDir>$(GameDir)\Mods\CustomCosmeticLoader</ModOutputDir>
</PropertyGroup> </PropertyGroup>
</Project> </Project>