ca9718144f
Fixed the extra hair, Overhauled the Environment Manager, Removed Save Bloat, Added Loading Screen before Character Menu.
17 lines
301 B
C#
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;
|
|
}
|
|
}
|