mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
10 lines
133 B
C++
10 lines
133 B
C++
#include "animatable.h"
|
|
|
|
namespace vb01{
|
|
using namespace std;
|
|
|
|
Animatable::Animatable(string name){
|
|
this->name = name;
|
|
}
|
|
}
|