using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace VoxelBusters.CoreLibrary.NativePlugins
{
///
/// An enumeration for the available calendars.
///
public enum Calendar
{
// Identifier for the Buddhist calendar.
Buddhist = 1,
// Identifier for the Chinese calendar.
Chinese,
// Identifier for the Coptic calendar.
Coptic,
// Identifier for the Ethiopic (Amete Alem) calendar.
EthiopicAmeteAlem,
// Identifier for the Ethiopic (Amete Mihret) calendar.
EthiopicAmeteMihret,
// Identifier for the Gregorian calendar.
Gregorian,
// Identifier for the Hebrew calendar.
Hebrew,
// Identifier for the Indian calendar.
Indian,
// Identifier for the Islamic calendar.
Islamic,
// Identifier for the Islamic civil calendar.
IslamicCivil,
// Identifier for the tabular Islamic calendar.
IslamicTabular,
// Identifier for the Islamic Umm al-Qura calendar, as used in Saudi Arabia.
IslamicUmmAlQura,
// Identifier for the ISO8601 calendar.
Iso8601,
// Identifier for the Japanese calendar.
Japanese,
// Identifier for the Persian calendar.
Persian,
// Identifier for the Republic of China (Taiwan) calendar.
RepublicOfChina,
}
}