#ifndef ALSK_ALSK_SKELETON_SKELETONBASE_H #define ALSK_ALSK_SKELETON_SKELETONBASE_H #include #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