15 lines
255 B
C#
15 lines
255 B
C#
namespace NBF
|
|
{
|
|
public struct PlayerStateChangeEvent
|
|
{
|
|
public Player Player;
|
|
}
|
|
|
|
|
|
public struct PlayerItemChangeEvent
|
|
{
|
|
public Player Player;
|
|
public PlayerItem Item;
|
|
public PlayerItem PrevItem;
|
|
}
|
|
} |