This commit is contained in:
SoulliesOfficial
2025-10-23 00:49:44 -04:00
parent 9b1b5ca93f
commit 61a397dd4c
9846 changed files with 2618439 additions and 793547 deletions

View File

@@ -0,0 +1,40 @@
using System;
using Continentis.MainGame.Character;
using UnityEngine;
namespace Continentis.MainGame
{
public interface IBuffExtension_IntegerRange
{
public void Initialize(int amount)
{
if (amount > 0)
{
OnBecomePositive();
}
else if (amount < 0)
{
OnBecomeNegative();
}
else
{
OnBecomeZero();
}
}
public void OnBecomePositive()
{
}
public void OnBecomeZero()
{
}
public void OnBecomeNegative()
{
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 071013a8f86a78f43a5197bb688ccd3e