Re-organize all projects (#4166)
This commit is contained in:
72
Content.Shared/MobState/State/SharedNormalMobState.cs
Normal file
72
Content.Shared/MobState/State/SharedNormalMobState.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
#nullable enable
|
||||
|
||||
namespace Content.Shared.MobState.State
|
||||
{
|
||||
/// <summary>
|
||||
/// The standard state an entity is in; no negative effects.
|
||||
/// </summary>
|
||||
public abstract class SharedNormalMobState : BaseMobState
|
||||
{
|
||||
protected override DamageState DamageState => DamageState.Alive;
|
||||
|
||||
public override bool CanInteract()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanMove()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanUse()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanThrow()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanSpeak()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanDrop()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanPickup()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanEmote()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanAttack()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanEquip()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanUnequip()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public override bool CanChangeDirection()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user