Files
vb01/animatable.cpp
2022-03-26 15:46:29 +02: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;
}
}