refactor: 给头文件加上路径

直接在上一个 commit 里改的话可能会导致 history 消失
This commit is contained in:
zzyyyl
2022-09-29 23:06:36 +08:00
parent df3ff331be
commit 0ff6dd4b42
125 changed files with 399 additions and 399 deletions

View File

@@ -1,9 +1,9 @@
#include "Controller.h"
#include "AsstConf.h"
#include "AsstPlatform.h"
#include "Utils/AsstConf.h"
#include "Utils/AsstPlatform.h"
#ifdef _WIN32
#include "AsstPlatformWin32.h"
#include "Utils/AsstPlatformWin32.h"
#include <ws2tcpip.h>
#else
#include <fcntl.h>
@@ -18,7 +18,7 @@
#include <utility>
#include <vector>
#include "NoWarningCV.h"
#include "Utils/NoWarningCV.h"
#ifdef _MSC_VER
#pragma warning(push)
@@ -29,9 +29,9 @@
#pragma warning(pop)
#endif
#include "AsstTypes.h"
#include "GeneralConfiger.h"
#include "Logger.hpp"
#include "Utils/AsstTypes.h"
#include "Resource/GeneralConfiger.h"
#include "Utils/Logger.hpp"
asst::Controller::Controller(AsstCallback callback, void* callback_arg)
: m_callback(std::move(callback)), m_callback_arg(callback_arg), m_rand_engine(std::random_device {}())