Rename ClickWindow to WindowAction

This commit is contained in:
ReinforceZwei 2020-05-24 09:33:21 +08:00 committed by ORelio
parent 1e5b9fc94b
commit d6022d1ee9
7 changed files with 38 additions and 18 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MinecraftClient.Inventory
{
public enum WindowActionType
{
LeftClick,
RightClick,
MiddleClick
}
}