Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaClient/Source/Characters/AICharacter.cs
Joonas Rikkonen 044fd3344b 2f107db...5202af9
2019-03-18 21:42:26 +02:00

12 lines
341 B
C#

namespace Barotrauma
{
partial class AICharacter : Character
{
public override void DrawFront(Microsoft.Xna.Framework.Graphics.SpriteBatch spriteBatch, Camera cam)
{
base.DrawFront(spriteBatch, cam);
if (GameMain.DebugDraw && !IsDead) aiController.DebugDraw(spriteBatch);
}
}
}