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