13 lines
236 B
C#
13 lines
236 B
C#
public class ContainerSourceLocalPlayer : ItemContainerSource
|
|
{
|
|
public PlayerInventory.Type type;
|
|
|
|
public bool hideInvalidIcons;
|
|
|
|
private ItemIcon[] allIcons;
|
|
|
|
public override ItemContainer GetItemContainer()
|
|
{
|
|
return null;
|
|
}
|
|
}
|