Re-organize all projects (#4166)
This commit is contained in:
29
Content.Server/Act/ISuicideAct.cs
Normal file
29
Content.Server/Act/ISuicideAct.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using Content.Server.Chat.Managers;
|
||||
using Robust.Shared.Analyzers;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Act
|
||||
{
|
||||
[RequiresExplicitImplementation]
|
||||
public interface ISuicideAct
|
||||
{
|
||||
public SuicideKind Suicide(IEntity victim, IChatManager chat);
|
||||
}
|
||||
|
||||
public enum SuicideKind
|
||||
{
|
||||
Special, //Doesn't damage the mob, used for "weird" suicides like gibbing
|
||||
|
||||
//Damage type suicides
|
||||
Blunt,
|
||||
Slash,
|
||||
Piercing,
|
||||
Heat,
|
||||
Shock,
|
||||
Cold,
|
||||
Poison,
|
||||
Radiation,
|
||||
Asphyxiation,
|
||||
Bloodloss
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user