8 lines
138 B
C#
8 lines
138 B
C#
namespace ArachnaeSwarm
|
|
{
|
|
public interface IFuelSource
|
|
{
|
|
bool HasFuel { get; }
|
|
void Notify_UsedThisTick();
|
|
}
|
|
} |