Inventories WiP

This commit is contained in:
PJB3005
2017-09-24 21:09:26 +02:00
parent 60ff292f14
commit f6e265bccb
7 changed files with 313 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using SS14.Shared.GameObjects;
using SS14.Shared.Interfaces.GameObjects;
using System.Collections.Generic;
namespace Content.Server.Interfaces.GameObjects
{
public class HandsComponent : Component, IHandsComponent
{
public override string Name => "Hands";
}
}