23 lines
590 B
C#
23 lines
590 B
C#
using Core;
|
|
using UnityEngine;
|
|
|
|
namespace Minigames.FortFight.Projectiles
|
|
{
|
|
/// <summary>
|
|
/// Standard projectile - no special ability.
|
|
/// Moderate damage, standard physics arc.
|
|
/// </summary>
|
|
public class ToasterProjectile : ProjectileBase
|
|
{
|
|
// Toaster is the basic projectile - uses base class behavior
|
|
// No special ability needed
|
|
|
|
public override void ActivateAbility()
|
|
{
|
|
// Toaster has no special ability
|
|
Logging.Debug("[ToasterProjectile] Toaster has no special ability");
|
|
}
|
|
}
|
|
}
|
|
|