mirror of
https://github.com/zeldaret/ss
synced 2026-06-03 10:31:28 -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
|