Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BSContainer.h
T
2026-05-30 18:33:24 +12:00

14 lines
131 B
C++

#pragma once
namespace RE
{
namespace BSContainer
{
enum class ForEachResult
{
kContinue = 0x0,
kStop = 0x1
};
}
}