14 lines
243 B
C#
14 lines
243 B
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public interface IWorldItemObject
|
||
|
{
|
||
|
public IBasicItem Item { get; set; }
|
||
|
public event Action<IBasicItem> OnSetItem;
|
||
|
}
|
||
|
}
|
||
|
|