17 lines
316 B
C#
17 lines
316 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace SimpleLootBox
|
|
{
|
|
public class LootBox
|
|
{
|
|
public ThingDef thingDef;
|
|
public float chance = 0.05f;
|
|
public float daysBetweenLootBoxSpawns;
|
|
}
|
|
}
|