Firstborn/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs
Schaken-Mods ca9718144f Update 4/24/23
Fixed the extra hair, Overhauled the Environment Manager, Removed Save Bloat, Added Loading Screen before Character Menu.
2023-04-24 17:54:43 -05:00

17 lines
301 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
namespace RPGCreationKit.SaveSystem
{
[Serializable]
public class Environment
{
public int Year;
public int Month;
public int Day;
public float TimeOfDay;
}
}