mirror of
https://github.com/huderlem/porymap.git
synced 2026-04-20 16:47:33 -05:00
10 lines
181 B
C++
10 lines
181 B
C++
#pragma once
|
|
#ifndef REGEX_H
|
|
#define REGEX_H
|
|
|
|
namespace Regex {
|
|
constexpr auto Pattern_INCBIN = R"(INC(BIN|GFX)_\w+?\s*\(\s*\"(?<path>[^\"]*)\"[^\)]*\))";
|
|
};
|
|
|
|
#endif // REGEX_H
|