summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2019-12-09 18:02:19 +0100
committernsensfel <SpamShield0@noot-noot.org>2019-12-09 18:02:19 +0100
commitec10e2816562873c17f7631bd19c2e4aa931aabf (patch)
tree6dcbb96500d5c2a25f0267c625ede6444499651e /src/shared
parent8c7d813afb79cbe838be314141224865abd9e4fd (diff)
Map marker -> (StatusIndictator, Condition)...
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/struct/map/shr_tile_instance.erl9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/shared/struct/map/shr_tile_instance.erl b/src/shared/struct/map/shr_tile_instance.erl
index 1739207..7f53b5f 100644
--- a/src/shared/struct/map/shr_tile_instance.erl
+++ b/src/shared/struct/map/shr_tile_instance.erl
@@ -3,14 +3,15 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--type display_data() :: list(binary()).
-
-opaque type() ::
{
shr_tile:id(),
shr_tile:variant_id(),
- display_data(),
- ordsets:ordset(shr_map_marker:name())
+ orddict:orddict
+ (
+ shr_condition:trigger(),
+ ordsets:ordset(non_neg_integer())
+ )
}.
-export_type([type/0]).