ndsa/example_code/multi_module_test.cpp
2022-03-03 03:33:03 -05:00

16 lines
278 B
C++

#include <NDSA.hh>
using namespace NDSA;
int objectCount() {
int objectCount = 0;
for(int c = 0; c < MAX_OBJECTS; c++) {
if(Lists.Objects[c]) {
objectCount++;
}
}
return objectCount;
}
void printFrame(int frame) {
PrintAt(0, 10, "Frame = %d", frame);
}