space-pew/SpacePew/Models/IKillable.cs
Magnus von Wachenfeldt 2a9d8ce416 move to github
2015-12-04 10:23:49 +01:00

13 lines
169 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SpacePew.Models
{
public interface IKillable
{
void Kill();
}
}