summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/timed_cache_data.hrl')
-rw-r--r-- | src/timed_cache_data.hrl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/timed_cache_data.hrl b/src/timed_cache_data.hrl index b0d7ba6..e91be25 100644 --- a/src/timed_cache_data.hrl +++ b/src/timed_cache_data.hrl @@ -1,6 +1,9 @@ +%% TODO: add types. -record(battlemap, {id, width, height, content, instances}). -record(battlemap_instance, {id, chars, curr_player, rem_chars, last_turn}). -record(character, {id, name, icon, portrait, mov_pts, atk_rg}). --record(character_instance, {id, x, y, team}). -record(character_turn, {id, path, target}). -record(player, {id, battlemaps, characters}). + +%% Not stored in its own timed cache. +-record(character_instance, {x, y, team}). |