Added generic DefModExtension for Distance and Ticks

This commit is contained in:
Vegapnk 2023-07-17 06:58:00 +02:00
parent d21a665a3c
commit ef1e3cdd0f
3 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace RJW_Genes
{
/// <summary>
/// General DefModExtension to cover various genes that need to tick regularly.
/// Defining it like this allows to adjust things in XML.
/// </summary>
public class TickIntervalExtension : DefModExtension
{
public int tickInterval;
}
}