Rename AnimationManager to Animations and expose to public

This commit is contained in:
Wojtek Figat
2021-05-31 19:32:35 +02:00
parent 2c2c7744eb
commit 760b687b02
4 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,25 @@
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
#pragma once
class AnimatedModel;
/// <summary>
/// The animations service.
/// </summary>
class FLAXENGINE_API Animations
{
public:
/// <summary>
/// Adds an animated model to update.
/// </summary>
/// <param name="obj">The object.</param>
static void AddToUpdate(AnimatedModel* obj);
/// <summary>
/// Removes the animated model from update.
/// </summary>
/// <param name="obj">The object.</param>
static void RemoveFromUpdate(AnimatedModel* obj);
};