pacman/Pacman_refactored/Interfaces/IBoostable.cs
2022-07-06 18:45:56 +03:00

16 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Pacman_refactored.Classes.Interfaces
{
public interface IBoostable
{
int BoostCooldown { get; set; }
void OnBoost(Entity entity)
{
}
}
}