t8-mod/source/shared-code/utilities/flags.hpp

9 lines
105 B
C++
Raw Normal View History

2023-03-06 15:40:07 -05:00
#pragma once
#include <string>
2023-11-10 16:52:20 -05:00
namespace utilities::flags
2023-03-06 15:40:07 -05:00
{
bool has_flag(const std::string& flag);
}