Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -39,42 +39,18 @@ namespace Server.Network
|
|||
m_OnReceive = onReceive;
|
||||
}
|
||||
|
||||
public int PacketID
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_PacketID;
|
||||
}
|
||||
}
|
||||
public int PacketID => m_PacketID;
|
||||
|
||||
public int Length
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Length;
|
||||
}
|
||||
}
|
||||
public int Length => m_Length;
|
||||
|
||||
public OnPacketReceive OnReceive
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_OnReceive;
|
||||
}
|
||||
}
|
||||
public OnPacketReceive OnReceive => m_OnReceive;
|
||||
|
||||
public ThrottlePacketCallback ThrottleCallback
|
||||
{
|
||||
get{ return m_ThrottleCallback; }
|
||||
set{ m_ThrottleCallback = value; }
|
||||
get => m_ThrottleCallback;
|
||||
set => m_ThrottleCallback = value;
|
||||
}
|
||||
|
||||
public bool Ingame
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Ingame;
|
||||
}
|
||||
}
|
||||
public bool Ingame => m_Ingame;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue