refactor(Features/looped): Resorted files into sub dirs

This commit is contained in:
Yimura
2021-01-15 22:56:58 +01:00
parent 345116bd71
commit c627281e4d
16 changed files with 17 additions and 6 deletions

View File

@ -0,0 +1,11 @@
#include "features.hpp"
#include "script_global.hpp"
namespace big
{
void features::disable_phone()
{
if (g_settings.options["disable_phone"])
*script_global(19664).as<int*>() = 1;
}
}