Files
HighRollerClassic/HighRollerClassic/Player/Player.cs
2026-01-03 13:10:26 +01:00

15 lines
371 B
C#

using Dalamud.Game.Gui.ContextMenu;
using HighRollerClassic.DataStructures;
namespace HighRollerClassic;
public class Player(MenuTargetDefault target)
{
private RollHistory rollsHistory = new();
public int Bank { get; private set; } = 0;
public ulong ContentId { get; private set; } = target.TargetContentId;
// TODO implement roll history FULL
}