whitespace, comments, broad subtypes

- changes some whitespace stuff
- adds some comments for ease of reading

player facing stuff
- adds hharar, njarir to tajara
- adds axiori, xiialt, xiori to skrell
- adds breeders, bulwarks to vaurca
- adds baseline, bishop to ipc models
- renames g1, g2 heavy frames to industrial
- fixes shells being listed twice
- removes 'do not clone' option
This commit is contained in:
Llywelwyn 2022-07-24 11:42:32 +01:00
parent 11f108b5f8
commit 9b85a836fb
10 changed files with 696 additions and 683 deletions

View file

@ -1,18 +1,18 @@
namespace AuroraRecordGenerator
{
public partial class GeneratedResultWindow
{
public GeneratedResultWindow()
{
InitializeComponent();
}
public partial class GeneratedResultWindow
{
public GeneratedResultWindow()
{
InitializeComponent();
}
public GeneratedResultWindow(Record record) : this()
{
var formatter = new RecordFormatter(record);
EmploymentBox.Text = formatter.EmploymentRecords;
MedicalBox.Text = formatter.MedicalRecords;
SecurityBox.Text = formatter.SecurityRecords;
}
}
public GeneratedResultWindow(Record record) : this()
{
var formatter = new RecordFormatter(record);
EmploymentBox.Text = formatter.EmploymentRecords;
MedicalBox.Text = formatter.MedicalRecords;
SecurityBox.Text = formatter.SecurityRecords;
}
}
}