mirror of
https://github.com/zeldaret/ss
synced 2026-05-30 08:56:34 -04:00
15 lines
226 B
C++
15 lines
226 B
C++
#include "egg/core/eggController.h"
|
|
|
|
|
|
namespace EGG
|
|
{
|
|
|
|
void CoreControllerMgr::beginFrame() {
|
|
for (int i = 0; i < mControllers.getSize(); ++i) {
|
|
mControllers(i)->beginFrame(NULL);
|
|
}
|
|
}
|
|
|
|
|
|
} // namespace EGG
|