alsk/src/alsk/skeleton/skeletonbase.h

24 lines
336 B
C++

#ifndef ALSK_ALSK_SKELETON_SKELETONBASE_H
#define ALSK_ALSK_SKELETON_SKELETONBASE_H
#include <cstdint>
#include "tags.h"
namespace alsk {
struct SkeletonBase {
using IsSkeleton = tag::SkeletonTag;
constexpr SkeletonBase() noexcept {}
~SkeletonBase() noexcept {}
std::size_t step = 0;
std::size_t parDepth = 0;
};
}
#endif