newlon/scripts/IProjectile.cs
2025-07-11 22:35:36 +05:00

9 lines
134 B
C#

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