mirror of https://github.com/nmlgc/ReC98.git
10 lines
161 B
C++
10 lines
161 B
C++
![]() |
// Generic entity template
|
||
|
template <int Count> struct CEntities {
|
||
|
screen_x_t left[Count];
|
||
|
screen_y_t top[Count];
|
||
|
|
||
|
static int count() {
|
||
|
return Count;
|
||
|
}
|
||
|
};
|