mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 02:35:16 +02:00
20 lines
267 B
C++
20 lines
267 B
C++
//
|
|
// Skeleton.cpp
|
|
// interface
|
|
//
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
|
|
#include "Skeleton.h"
|
|
|
|
Skeleton::Skeleton() {
|
|
}
|
|
|
|
void Skeleton::initialize() {
|
|
}
|
|
|
|
void Skeleton::render() {
|
|
}
|
|
|
|
void Skeleton::simulate(float deltaTime) {
|
|
}
|
|
|