Prototype game engine for Heroes of Might & Magic, featuring a gameplay plot-twist...
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

23 řádky
827B

  1. -- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
  2. --
  3. -- GNU General Public Licence (version 3 or later)
  4. with core, attribute, skill, resource;
  5. package body faction is
  6. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  7. sprite : array (enumeration) of core.sprite;
  8. ------------------------------------------------------------------------------------------
  9. procedure draw (value : in enumeration; x, y : in integer) is
  10. begin
  11. null;
  12. end draw;
  13. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  14. end faction;