Adds Basic Tools (#27)

* Basic Tools

* Adds tool prototypes
This commit is contained in:
clusterfack
2018-02-06 19:03:36 -06:00
committed by GitHub
parent 1452502fbf
commit 059832d324
18 changed files with 308 additions and 5 deletions

View File

@@ -49,7 +49,7 @@ namespace Content.Server.GameObjects.EntitySystems
public void UserInteraction(object sender, EntityEventArgs arg)
{
ClickedOnEntityEventArgs e = (ClickedOnEntityEventArgs)arg;
if (e.MouseButton != Clicktype.Left)
if (e.MouseButton != ClickType.Left)
return;
IEntity user = EntityManager.GetEntity(e.Clicker);