Changed whole project structure (split client and server into separat projects)
This commit is contained in:
19
ReallifeGamemode.Server/Inventory/Interfaces/IUsableItem.cs
Normal file
19
ReallifeGamemode.Server/Inventory/Interfaces/IUsableItem.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using GTANetworkAPI;
|
||||
using reallife_gamemode.Server.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
/**
|
||||
* @overview Life of German Reallife - Inventory Interfaces UsableItem (IUsableItem.cs)
|
||||
* @author VegaZ
|
||||
* @copyright (c) 2008 - 2018 Life of German
|
||||
*/
|
||||
|
||||
namespace reallife_gamemode.Server.Inventory.Interfaces
|
||||
{
|
||||
public interface IUsableItem : IItem, IDroppableItem
|
||||
{
|
||||
void Use(UserItem uItem);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user