Rename BaseModule to Module
This commit is contained in:
parent
479c3fa667
commit
47a7809398
18 changed files with 10 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
#include "HeapAllocatorGlobal.hpp"
|
||||
#include "HeapAllocator.hpp"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
namespace tp {
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ project(Types)
|
|||
|
||||
add_compile_definitions(MEM_DEBUG)
|
||||
|
||||
add_subdirectory(BaseModule)
|
||||
add_subdirectory(Module)
|
||||
add_subdirectory(Utils)
|
||||
add_subdirectory(Containers)
|
||||
#add_subdirectory(Allocators)
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
namespace tp {
|
||||
extern ModuleManifest gModuleContainers;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
int main() {
|
||||
tp::ModuleManifest* ModuleDependencies[] = { &tp::gModuleBase, nullptr };
|
||||
2
TODO
2
TODO
|
|
@ -1,7 +1,9 @@
|
|||
Containers:
|
||||
ADd check copy times
|
||||
Addbuff
|
||||
Vector
|
||||
Vector 2d
|
||||
AVL dont copy data just swap
|
||||
|
||||
Strings:
|
||||
Implement
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "BaseModule.hpp"
|
||||
#include "Module.hpp"
|
||||
|
||||
#define PTR_OFFSET(first, offset) (*((&first) + offset))
|
||||
#define MEMBER_OFFSET(s, m) (alni(&(((s*)0)->m)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue