Added a button to add entities to storage items (#709)

This commit is contained in:
micheel665
2020-02-17 01:19:35 +02:00
committed by GitHub
parent b2b8021d9b
commit 987a39c25e
3 changed files with 83 additions and 19 deletions

View File

@@ -30,6 +30,18 @@ namespace Content.Shared.GameObjects.Components.Storage
}
}
/// <summary>
/// Component message for adding an entity to the storage entity.
/// </summary>
[Serializable, NetSerializable]
public class InsertEntityMessage : ComponentMessage
{
public InsertEntityMessage()
{
Directed = true;
}
}
/// <summary>
/// Component message for removing a contained entity from the storage entity
/// </summary>