mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
11 lines
167 B
C++
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;
|
|
}
|
|
}
|