17 lines
208 B
C#
17 lines
208 B
C#
|
using SHADE;
|
|||
|
using System;
|
|||
|
public class Item : Script
|
|||
|
{
|
|||
|
public enum ItemCategory
|
|||
|
{
|
|||
|
LIGHT,
|
|||
|
MEDIUM,
|
|||
|
HEAVY
|
|||
|
}
|
|||
|
|
|||
|
public ItemCategory currCategory;
|
|||
|
|
|||
|
protected override void awake()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|