Files
vb01/source/core/animation/animatable.cpp
2026-05-21 20:27:40 +03:00

11 lines
167 B
C++

#include "animatable.h"
namespace vb01{
using namespace std;
Animatable::Animatable(Type type, string name){
this->type = type;
this->name = name;
}
}