forked from CWX/ALT-Mods
18 lines
404 B
C#
18 lines
404 B
C#
|
using BepInEx;
|
|||
|
using HarmonyLib;
|
|||
|
|
|||
|
namespace itemValueMod
|
|||
|
{
|
|||
|
[BepInPlugin("com.KcY.SeeItemValue", "KcY-SeeItemValue", "1.2.0")]
|
|||
|
public class Plugin : BaseUnityPlugin
|
|||
|
{
|
|||
|
private void Awake()
|
|||
|
{
|
|||
|
new ItemPatch().Enable();
|
|||
|
new AmmoPatch().Enable();
|
|||
|
new GrenadePatch().Enable();
|
|||
|
new SecureContainerPatch().Enable();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|