dylanebert's picture
dylanebert HF Staff
add skeleton library
4e1da8c
raw
history blame
167 Bytes
import { Object3D } from './Object3D';
import { Matrix4 } from '../math/Matrix4';
export class Camera extends Object3D {
constructor() {
super();
}
}