v0.11.0.9

This commit is contained in:
Joonas Rikkonen
2020-12-09 16:34:16 +02:00
parent bbf06f0984
commit f433a7ba10
325 changed files with 13947 additions and 3652 deletions
@@ -0,0 +1,21 @@
#if CLIENT
using Microsoft.Xna.Framework.Graphics;
#endif
namespace Barotrauma.MapCreatures.Behavior
{
enum ExitState
{
Running, // State is running
Terminate, // State has exited
ReturnLast // Return to the last running state if any
}
interface IBallastFloraState
{
public void Enter();
public void Exit();
public void Update(float deltaTime);
public ExitState GetState();
}
}