first commit
This commit is contained in:
25
Packets/Game/GameTrees/ShakeTree.cs
Normal file
25
Packets/Game/GameTrees/ShakeTree.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KCM.Packets.Game.GameTrees
|
||||
{
|
||||
public class ShakeTree : Packet
|
||||
{
|
||||
public override ushort packetId => (int)Enums.Packets.ShakeTree;
|
||||
|
||||
public int idx { get; set; }
|
||||
|
||||
public override void HandlePacketClient()
|
||||
{
|
||||
TreeSystem.inst.ShakeTree(idx);
|
||||
}
|
||||
|
||||
public override void HandlePacketServer()
|
||||
{
|
||||
//throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user