mirror of
https://github.com/nicklausw/ndsa.git
synced 2025-06-19 09:15:44 -04:00
16 lines
278 B
C++
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);
|
|
} |