-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make BepInEx plugin for automatic version checking
- Loading branch information
1 parent
1bcb1c7
commit 60d2b1b
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/UserDictionary/Words/=BTHU/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using BepInEx; | ||
using JetBrains.Annotations; | ||
|
||
namespace BTHarmonyUtils { | ||
|
||
/// <summary> | ||
/// BTHarmonyUtils plugin | ||
/// </summary> | ||
[PublicAPI] | ||
[BepInPlugin(pluginGuid, pluginName, pluginVersion)] | ||
public class BTHarmonyUtilsPlugin : BaseUnityPlugin { | ||
|
||
/// <summary> | ||
/// BTHU plugin guid | ||
/// </summary> | ||
public const string pluginGuid = "blazingtwist.harmonyutils"; | ||
|
||
/// <summary> | ||
/// BTHU plugin display-name | ||
/// </summary> | ||
public const string pluginName = "BT Harmony Utils"; | ||
|
||
/// <summary> | ||
/// BTHU plugin version | ||
/// </summary> | ||
public const string pluginVersion = "0.2.0"; | ||
|
||
} | ||
|
||
} |