23 lines
537 B
C#
23 lines
537 B
C#
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
|
|
}
|
|
}
|
|
}
|