namespace CustomNPCFramework.Framework.Enums
{
/// An enum signifying the different seasons that are supported when choosing NPC graphics.
public enum Seasons
{
/// The spring season. This ensures that a corresponding graphic with this enum in it's seasons list can be chosen in the spring time. Also used for functionality to check seasons.
spring,
/// The summer season. This ensures that a corresponding graphic with this enum in it's seasons list can be chosen in the summer time. Also used for functionality to check seasons.
summer,
/// The fall season. This ensures that a corresponding graphic with this enum in it's seasons list can be chosen in the fall time. Also used for functionality to check seasons.
fall,
/// The winter season. This ensures that a corresponding graphic with this enum in it's seasons list can be chosen in the winter time. Also used for functionality to check seasons.
winter
}
}