split CKContext work

This commit is contained in:
2023-09-04 22:58:53 +08:00
parent 5c1af5be24
commit ab8a9da526
16 changed files with 519 additions and 198 deletions

View File

@ -0,0 +1,19 @@
#pragma once
#include "../../VTAll.hpp"
#include "CKBaseManager.hpp"
namespace LibCmo::CK2::MgrImpls {
class CKPathManager : public CKBaseManager {
public:
CKPathManager(CKContext* ctx) :
CKBaseManager(ctx, PATH_MANAGER_GUID, "Path Manager") {}
virtual ~CKPathManager() {}
LIBCMO_DISABLE_COPY_MOVE(CKPathManager);
protected:
};
}