Inventory System
This commit is contained in:
22
Server/Managers/InventoryManager.cs
Normal file
22
Server/Managers/InventoryManager.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using reallife_gamemode.Model;
|
||||
using reallife_gamemode.Server.Inventory.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
/**
|
||||
* @overview Life of German Reallife - Managers InventoryManager (InventoryManager.cs)
|
||||
* @author hydrant, VegaZ
|
||||
* @copyright (c) 2008 - 2018 Life of German
|
||||
*/
|
||||
|
||||
namespace reallife_gamemode.Server.Managers
|
||||
{
|
||||
public class InventoryManager
|
||||
{
|
||||
public static IItem GetItemById(this int id, DatabaseContext context = null)
|
||||
{
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user