xabina/player.ads

42 lines
2.0 KiB
Ada
Raw Normal View History

2023-10-15 11:00:07 -04:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2023 - Ognjen 'xolatile' Milan Robovic
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Xabina is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either
-- version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
-- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2023-10-15 12:40:35 -04:00
with core;
2023-10-15 11:00:07 -04:00
package player is
------------------------------------------------------------------------------------------
2023-10-15 13:52:26 -04:00
type variable_type is
2023-10-15 11:00:07 -04:00
record
--~x : map_width := 0;
--~y : map_height := 0;
2023-10-15 12:40:35 -04:00
x : core.screen_width := 0;
y : core.screen_height := 0;
2023-10-15 11:00:07 -04:00
health : natural := 0;
armour : natural := 0;
mana : natural := 0;
stamina : natural := 0;
end record;
------------------------------------------------------------------------------------------
2023-10-15 13:52:26 -04:00
data : variable_type;
2023-10-15 11:00:07 -04:00
------------------------------------------------------------------------------------------
procedure render;
2023-10-15 12:00:08 -04:00
procedure move_up;
procedure move_down;
procedure move_left;
procedure move_right;
2023-10-15 11:00:07 -04:00
------------------------------------------------------------------------------------------
end player;