mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Small stuff.
This commit is contained in:
parent
4dfc2cf665
commit
d8e4c5b802
2 changed files with 12 additions and 2 deletions
10
Penumbra.GameData/Enums/MouseButton.cs
Normal file
10
Penumbra.GameData/Enums/MouseButton.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
namespace Penumbra.GameData.Enums
|
||||||
|
{
|
||||||
|
public enum MouseButton
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
Left,
|
||||||
|
Right,
|
||||||
|
Middle,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue