mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 19:50:54 +01:00
15 lines
276 B
C
15 lines
276 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string_view>
|
||
|
|
|
||
|
|
using TiltedPhoques::Set;
|
||
|
|
|
||
|
|
namespace AnimationEventLists
|
||
|
|
{
|
||
|
|
extern const Map<std::string_view, std::string_view> kIdleToInstant;
|
||
|
|
|
||
|
|
extern const Set<std::string_view> kExitSpecial;
|
||
|
|
|
||
|
|
extern const Set<std::string_view> kIgnore;
|
||
|
|
} // namespace
|