Prototype game engine for Heroes of Might & Magic, featuring a gameplay plot-twist...
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

29 satır
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;