rjw-whoring/1.3/Source/Mod/Data/StringListDef.cs
2022-07-16 22:50:21 +03:00

14 lines
300 B
C#

using System.Collections.Generic;
using Verse;
namespace rjwwhoring
{
/// <summary>
/// Whore backstories from xml GET!
/// Just a simplest form of passing data from xml to the code
/// </summary>
public class StringListDef : Def
{
public List<string> strings = new List<string>();
}
}