Small stuff.

This commit is contained in:
Ottermandias 2021-08-28 23:43:37 +02:00
parent 4dfc2cf665
commit d8e4c5b802
2 changed files with 12 additions and 2 deletions

View file

@ -0,0 +1,10 @@
namespace Penumbra.GameData.Enums
{
public enum MouseButton
{
None,
Left,
Right,
Middle,
}
}

View file

@ -27,7 +27,7 @@ namespace Penumbra.Api
internal ICallGateProvider< object?, object >? ProviderChangedItemTooltip; internal ICallGateProvider< object?, object >? ProviderChangedItemTooltip;
internal ICallGateProvider< int, object?, object >? ProviderChangedItemClick; internal ICallGateProvider< int, object?, object >? ProviderChangedItemClick;
internal readonly IPenumbraApi _api; internal readonly IPenumbraApi Api;
private static RedrawType CheckRedrawType( int value ) private static RedrawType CheckRedrawType( int value )
{ {
@ -46,7 +46,7 @@ namespace Penumbra.Api
public PenumbraIpc( DalamudPluginInterface pi, IPenumbraApi api ) public PenumbraIpc( DalamudPluginInterface pi, IPenumbraApi api )
{ {
_api = api; Api = api;
try try
{ {