Fix includes and removed libs folder

This commit is contained in:
Elijah Thomas
2023-10-06 07:49:50 -04:00
parent 99d473d1aa
commit 4ae5fe5753
244 changed files with 584 additions and 584 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "egg/core/eggController.h"
namespace EGG
{
void CoreControllerMgr::beginFrame() {
for (int i = 0; i < mControllers.getSize(); ++i) {
mControllers(i)->beginFrame(NULL);
}
}
} // namespace EGG