mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-14 03:13:03 +00:00
16 lines
314 B
C++
16 lines
314 B
C++
#pragma once
|
|
#include "Techset/Parsing/TechniqueFileParser.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace techset
|
|
{
|
|
class TechniqueNoScopeSequences
|
|
{
|
|
TechniqueNoScopeSequences() = default;
|
|
|
|
public:
|
|
static const std::vector<TechniqueParser::sequence_t*>& GetSequences();
|
|
};
|
|
} // namespace techset
|