//
// Element.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace NosSmooth.Data.Abstractions.Enums;
///
/// Element type.
///
public enum Element
{
///
/// No element type.
///
Neutral = 0,
///
/// Fire element.
///
Fire = 1,
///
/// Water element.
///
Water = 2,
///
/// Light element.
///
Light = 3,
///
/// Dark element.
///
Dark = 4
}