using System; using System.Collections; using System.Collections.Generic; namespace BITKit { public interface IWorldItemObject { public IBasicItem Item { get; set; } public event Action OnSetItem; } }