TinyLifeExampleMod/ExampleModOptions.cs

9 lines
157 B
C#
Raw Normal View History

2022-09-13 14:12:56 +02:00
namespace ExampleMod;
2022-09-17 12:33:20 +02:00
// these options are saved and loaded in ExampleMod
public class ExampleModOptions {
2022-09-13 14:12:56 +02:00
public float DarkShirtSpeedIncrease = 2;
}