2022-05-14 20:06:24 +01:00
|
|
|
|
using BepInEx;
|
|
|
|
|
|
|
|
|
|
namespace itemValueMod
|
|
|
|
|
{
|
2022-08-31 20:01:15 +01:00
|
|
|
|
[BepInPlugin("com.KcY.SeeItemValue", "KcY-SeeItemValue", "1.4.2")]
|
2022-05-14 20:06:24 +01:00
|
|
|
|
public class Plugin : BaseUnityPlugin
|
|
|
|
|
{
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
new ItemPatch().Enable();
|
|
|
|
|
new AmmoPatch().Enable();
|
|
|
|
|
new GrenadePatch().Enable();
|
|
|
|
|
new SecureContainerPatch().Enable();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|