MOD!
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 071013a8f86a78f43a5197bb688ccd3e
|
||||
Reference in New Issue
Block a user