newlon/scripts/components/IProjectile.cs

9 lines
134 B
C#

namespace Newlon.Components;
//
// Base interface for entities
//
public interface IProjectile
{
public int Line { get; set; }
}