punish v6.8.18.0
This commit is contained in:
commit
060278c1b7
317 changed files with 554155 additions and 0 deletions
23
LLib/LLib.Shop/IShopWindow.cs
Normal file
23
LLib/LLib.Shop/IShopWindow.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System.Numerics;
|
||||
using FFXIVClientStructs.FFXIV.Component.GUI;
|
||||
|
||||
namespace LLib.Shop;
|
||||
|
||||
public interface IShopWindow
|
||||
{
|
||||
bool IsEnabled { get; }
|
||||
|
||||
bool IsOpen { get; set; }
|
||||
|
||||
Vector2? Position { get; set; }
|
||||
|
||||
int GetCurrencyCount();
|
||||
|
||||
unsafe void UpdateShopStock(AtkUnitBase* addon);
|
||||
|
||||
unsafe void TriggerPurchase(AtkUnitBase* addonShop, int buyNow);
|
||||
|
||||
void SaveExternalPluginState();
|
||||
|
||||
void RestoreExternalPluginState();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue