mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 04:16:50 +01:00
9 lines
234 B
C++
9 lines
234 B
C++
|
#include "net_action_info.h"
|
||
|
|
||
|
bool NetActionInfo::operator==(const NetActionInfo &p_other) const {
|
||
|
return act_func == p_other.act_func;
|
||
|
}
|
||
|
|
||
|
bool NetActionInfo::operator<(const NetActionInfo &p_other) const {
|
||
|
return id < p_other.id;
|
||
|
}
|