2024-02-11 17:28:50 +01:00
|
|
|
#nullable disable // Populated at runtime ; Will error if Def isn't added in Defs
|
|
|
|
|
|
|
|
using RimWorld;
|
|
|
|
using Verse;
|
|
|
|
|
|
|
|
namespace Template;
|
|
|
|
|
|
|
|
[DefOf]
|
2024-04-04 21:36:32 +02:00
|
|
|
public static class TemplateDefOf
|
2024-02-11 17:28:50 +01:00
|
|
|
{
|
|
|
|
public static LetterDef success_letter;
|
|
|
|
}
|
|
|
|
#nullable enable
|