Skip to content

Commit

Permalink
Fixed names and added PluginInfo.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frityet committed Jun 15, 2021
1 parent 7447f47 commit fbf4b7e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Plugin/src/Plugin.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using BepInEx;

namespace InfiniteCasings
namespace H3VRMod
{
[BepInPlugin("maiq.Plugin", "Plugin", "0.1.0")]
[BepInPlugin(PluginInfo.PLUGIN_GUID, PluginInfo.PLUGIN_NAME, PluginInfo.PLUGIN_VERSION)]
[BepInProcess("h3vr.exe")]
public class InfiniteCasings : BaseUnityPlugin
public class Plugin : BaseUnityPlugin
{
public InfiniteCasings()
public Plugin()
{
Hook();
}
Expand Down
9 changes: 9 additions & 0 deletions src/Plugin/src/PluginInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace H3VRMod
{
internal static class PluginInfo
{
internal const string PLUGIN_NAME = "Example H3VR Mod";
internal const string PLUGIN_GUID = "com.yourname.h3vrmod";
internal const string PLUGIN_VERSION = "1.0.0";
}
}

0 comments on commit fbf4b7e

Please sign in to comment.