mirror of
https://github.com/ssloy/tinyraycaster.git
synced 2025-01-16 12:49:38 +01:00
7 lines
116 B
C++
7 lines
116 B
C++
#include "sprite.h"
|
|
|
|
bool Sprite::operator < (const Sprite& s) const {
|
|
return player_dist > s.player_dist;
|
|
}
|
|
|