20 lines
347 B
C#
20 lines
347 B
C#
namespace NBF
|
|
{
|
|
public struct PlayerStateChangeEvent
|
|
{
|
|
public Player Player;
|
|
}
|
|
|
|
|
|
public struct PlayerItemChangeEvent
|
|
{
|
|
public Player Player;
|
|
public PlayerItem Item;
|
|
public PlayerItem PrevItem;
|
|
}
|
|
|
|
public struct PlayerItemRodLingChangeEvent
|
|
{
|
|
public PlayerItem Item;
|
|
}
|
|
} |