newlon/scripts/components/IProjectile.cs

7 lines
104 B
C#

//
// Base interface for entities
//
public interface IProjectile
{
public int Line { get; set; }
}