//
// SpawnEffect.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.Packets.Enums.Entities;
/// <summary>
/// Effect that is shown on the entity spawning.
/// </summary>
public enum SpawnEffect
{
/// <summary>
/// Unknown.
/// </summary>
Summon = 0,
/// <summary>
/// Unknown.
/// </summary>
NoEffect = 1,
/// <summary>
/// Unknown.
/// </summary>
FallingFromSky = 2
}