Prototype game engine for Heroes of Might & Magic, featuring a gameplay plot-twist...
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.

29 line
1002B

  1. -- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
  2. --
  3. -- GNU General Public Licence (version 3 or later)
  4. with core, item, unit, construction;
  5. package world is
  6. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  7. type biome is (
  8. ash, cave, grass, rough, snow, swamp
  9. );
  10. ------------------------------------------------------------------------------------------
  11. procedure configure;
  12. procedure make (index : in biome; width, height : in natural);
  13. procedure draw;
  14. function width return integer;
  15. function height return integer;
  16. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  17. end world;