Add Radial Menu to Inventory / Item Interaction

This commit is contained in:
VegaZ
2018-12-18 22:15:17 +01:00
parent e9dbfabad0
commit a4845a9cc5
4 changed files with 213 additions and 39 deletions

View File

@@ -220,5 +220,16 @@ namespace reallife_gamemode.Server.Managers
context.SaveChanges();
}
}
[RemoteEvent("itemInteract")]
public void ItemInteract(Client player, string type, string itemId, int amount)
{
switch (type)
{
case "use":
break;
case "drop":
break;
}
}
}
}