summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-12-09 18:02:19 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-12-09 18:02:19 +0100 |
commit | ec10e2816562873c17f7631bd19c2e4aa931aabf (patch) | |
tree | 6dcbb96500d5c2a25f0267c625ede6444499651e /src/shared/struct | |
parent | 8c7d813afb79cbe838be314141224865abd9e4fd (diff) |
Map marker -> (StatusIndictator, Condition)...
Diffstat (limited to 'src/shared/struct')
-rw-r--r-- | src/shared/struct/map/shr_tile_instance.erl | 9 |
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]). |