-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInfoPanel.cs
25 lines (22 loc) · 879 Bytes
/
InfoPanel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using BTD_Mod_Helper.Api.Components;
using UnityEngine;
namespace BloonsClicker;
[RegisterTypeInIl2Cpp(false)]
public class InfoPanel : MonoBehaviour
{
public InfoPanel(IntPtr ptr) : base(ptr)
{
}
public ModHelperPanel panel { get; set; } = null!;
public ModHelperText NameText { get; set; } = null!;
public ModHelperText CostText { get; set; } = null!;
public ModHelperImage IconImage { get; set; } = null!;
public ModHelperText DescriptionText { get; set; } = null!;
public ModHelperText CashText { get; set; } = null!;
public ModHelperButton BuyButton { get; set; } = null!;
public ModHelperText PurchaseText { get; set; } = null!;
public ModHelperText PopsText { get; set; } = null!;
public ModHelperButton SellButton { get; set; } = null!;
public ModHelperText SellText { get; set; } = null!;
}