mirror of
https://gitgud.io/Ed86/rjw-whoring.git
synced 2024-08-15 00:03:25 +00:00
14 lines
300 B
C#
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>();
|
|
}
|
|
}
|