Files
LuaCsForBarotraumaEP/Subsurface/Source/Map/IDamageable.cs

25 lines
412 B
C#

using Microsoft.Xna.Framework;
namespace Subsurface
{
interface IDamageable
{
Vector2 SimPosition
{
get;
}
float Health
{
get;
}
AITarget AiTarget
{
get;
}
AttackResult AddDamage(IDamageable attacker, Vector2 position, Attack attack, float deltaTime, bool playSound=true);
}
}