12 lines
148 B
C++
12 lines
148 B
C++
#pragma once
|
|
|
|
#include "../shard.h"
|
|
#include "pch.h"
|
|
|
|
namespace crib::internal::vase {
|
|
enum struct Direction : uint8_t {
|
|
Forward,
|
|
Backward
|
|
};
|
|
}
|