19 lines
1.1 KiB
C#
19 lines
1.1 KiB
C#
namespace CustomNPCFramework.Framework.Enums
|
|
{
|
|
/// <summary>An enum signifying the different seasons that are supported when choosing NPC graphics.</summary>
|
|
public enum Seasons
|
|
{
|
|
/// <summary>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.</summary>
|
|
spring,
|
|
|
|
/// <summary>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.</summary>
|
|
summer,
|
|
|
|
/// <summary>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.</summary>
|
|
fall,
|
|
|
|
/// <summary>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.</summary>
|
|
winter
|
|
}
|
|
}
|