40 lines
719 B
C#
40 lines
719 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |