Cleaning u

This commit is contained in:
Zoe Roux
2021-06-14 16:07:24 +02:00
parent 9b385349dc
commit 10a73e07d1
5 changed files with 8 additions and 15 deletions

View File

@@ -17,7 +17,7 @@ namespace RAY {
public:
//! @brief A Model animation constructor
//! @param animationPtr an animation pointer, returned by the nimation-loading function
ModelAnimation(::ModelAnimation *animationPtr);
explicit ModelAnimation(::ModelAnimation *animationPtr);
//! @brief A default copy-constructor
ModelAnimation(const ModelAnimation &) = default;
@@ -45,9 +45,6 @@ namespace RAY {
size_t _frameCounter;
INTERNAL:
//! @brief Castin Object to raw model animation pointer
operator ::ModelAnimation *();
//! @brief Castin Object to raw model animation pointer
operator ::ModelAnimation() const;
};