2022-11-30 10:29:45 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using rjw;
|
|
|
|
|
using Verse;
|
|
|
|
|
using RimWorld;
|
|
|
|
|
namespace RJW_BGS
|
|
|
|
|
{
|
|
|
|
|
[StaticConstructorOnStartup]
|
|
|
|
|
internal static class Class1
|
|
|
|
|
{
|
|
|
|
|
static Class1()
|
|
|
|
|
{
|
|
|
|
|
RJWcopy.Racegroupdictbuilder();
|
2022-11-30 12:48:23 +00:00
|
|
|
|
//foreach (RaceGroupDef raceGroupDef2 in DefDatabase<RaceGroupDef>.AllDefs)
|
|
|
|
|
//{
|
2022-11-30 10:29:45 +00:00
|
|
|
|
//Log.Message("defName = " + raceGroupDef2.defName);
|
2022-11-30 12:48:23 +00:00
|
|
|
|
// if (raceGroupDef2.raceNames != null)
|
|
|
|
|
// {
|
|
|
|
|
// foreach (string race in raceGroupDef2.raceNames)
|
|
|
|
|
// {
|
2022-11-30 10:29:45 +00:00
|
|
|
|
//Log.Message(race);
|
2022-11-30 12:48:23 +00:00
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//}
|
2022-11-30 10:29:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|