mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-05 05:29:09 +01:00
8 lines
150 B
C#
8 lines
150 B
C#
namespace ExampleMod;
|
|
|
|
// these options are saved and loaded in ExampleMod
|
|
public class ModOptions {
|
|
|
|
public float DarkShirtSpeedIncrease = 2;
|
|
|
|
}
|