mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2026-06-18 19:25:57 +00:00
17 lines
436 B
C#
17 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
public class HediffCompProperties_DiseaseStorage : HediffCompProperties
|
|
{
|
|
// 300k = 5 days.
|
|
public int ticksThatDiseasesAreStored = 300000;
|
|
public HediffCompProperties_DiseaseStorage() => this.compClass = typeof(HediffComp_DiseaseStorage);
|
|
}
|
|
|
|
}
|