You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
|
11 months ago
|
#pragma once
|
||
|
|
#include "../levels/trigs.h"
|
||
|
|
|
||
|
|
namespace DAPI {
|
||
|
|
struct TriggerData {
|
||
|
|
bool compare(devilution::TriggerStruct &other) { return (other._tlvl == lvl && other._tmsg == type && other.position.x == x && other.position.y == y); }
|
||
|
|
|
||
|
|
int ID;
|
||
|
|
int x;
|
||
|
|
int y;
|
||
|
|
int lvl;
|
||
|
|
int type;
|
||
|
|
};
|
||
|
|
} // namespace DAPI
|