Minor improvements
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
constexpr Time::Time(Int64 microseconds) :
|
||||
m_nanoseconds(microseconds)
|
||||
constexpr Time::Time(Int64 nanoseconds) :
|
||||
m_nanoseconds(nanoseconds)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -57,6 +57,8 @@ namespace Nz
|
||||
class NAZARA_UTILITY_API Animation : public Resource
|
||||
{
|
||||
public:
|
||||
using Params = AnimationParams;
|
||||
|
||||
Animation();
|
||||
Animation(const Animation&) = delete;
|
||||
Animation(Animation&&) noexcept;
|
||||
|
||||
Reference in New Issue
Block a user