Files
FlaxEngine/Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs
2023-01-10 15:29:37 +01:00

21 lines
488 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.SceneGraph.Actors
{
/// <summary>
/// Scene tree node for <see cref="ParticleEffect"/> actor type.
/// </summary>
/// <seealso cref="ActorNodeWithIcon" />
[HideInEditor]
public sealed class ParticleEffectNode : ActorNodeWithIcon
{
/// <inheritdoc />
public ParticleEffectNode(Actor actor)
: base(actor)
{
}
}
}