mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
27 lines
654 B
C#
27 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SS3D_shared.HelperClasses;
|
|
using Mogre;
|
|
|
|
namespace SS3D_shared
|
|
{
|
|
public abstract class Item : AtomBaseClass
|
|
{
|
|
public ushort itemID = 0;
|
|
public string meshName;
|
|
public ServerItemInfo serverInfo;
|
|
public List<InterpolationPacket> interpolationPacket;
|
|
public DateTime lastUpdate;
|
|
public ItemType ItemType = ItemType.None;
|
|
public Mob holder; // Just temporary holder for now.
|
|
|
|
public Item()
|
|
{
|
|
AtomType = global::AtomType.Item;
|
|
}
|
|
|
|
}
|
|
}
|