// Copyright (c) Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.SceneGraph.Actors
{
///
/// Scene tree node for actor type.
///
///
[HideInEditor]
public sealed class SceneAnimationPlayerNode : ActorNodeWithIcon
{
///
public SceneAnimationPlayerNode(Actor actor)
: base(actor)
{
}
}
}