10 lines
332 B
C#
10 lines
332 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Projectile Count Upgrade", menuName = "AbilityUpgrades/ProjectileCountUpgrade")]
|
|
public class ProjectileCountUpgrade : AbilityUpgrade
|
|
{
|
|
protected override void UpgradeEffects()
|
|
{
|
|
thisPlayerAbility.projectileCount++; //idk how this will work for the stacking.
|
|
}
|
|
}
|