17 lines
518 B
C#
17 lines
518 B
C#
namespace GeometryTD.UI
|
|
{
|
|
public class RepoFormContext : UIContext
|
|
{
|
|
public string GoldText;
|
|
public RepoFormState State;
|
|
public bool ShowSellModeButton;
|
|
public string SellModeButtonText;
|
|
public bool ShowCombineArea;
|
|
public bool ShowSellArea;
|
|
public CombineAreaContext CombineAreaContext;
|
|
public SellAreaContext SellAreaContext;
|
|
public CompAreaContext CompAreaContext;
|
|
public ParticipantAreaContext ParticipantAreaContext;
|
|
}
|
|
}
|