959e80cf72
assets upload description.
20 lines
390 B
C#
20 lines
390 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;
|
|
public float Density;
|
|
public float Exposure;
|
|
public float Stars;
|
|
}
|
|
}
|