space-pew/SpacePew/Models/IKillable.cs

13 lines
169 B
C#
Raw Normal View History

2015-12-04 10:23:49 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SpacePew.Models
{
public interface IKillable
{
void Kill();
}
}