Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaShared/SharedSource/Map/ISpatialEntity.cs
T
2021-02-25 13:44:23 +02:00

19 lines
382 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 { get; }
bool OrderedToBeIgnored { get; set; }
}
}