19 lines
395 B
C#
19 lines
395 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
interface ISpatialEntity
|
|
{
|
|
Vector2 Position { get; }
|
|
Vector2 WorldPosition { get; }
|
|
Vector2 SimPosition { get; }
|
|
Submarine Submarine { get; }
|
|
}
|
|
|
|
interface IIgnorable : ISpatialEntity
|
|
{
|
|
bool IgnoreByAI(Character character);
|
|
bool OrderedToBeIgnored { get; set; }
|
|
}
|
|
}
|