xhads/source/effect.adb
2024-02-24 14:51:53 -05:00

17 lines
517 B
Ada

with core, effect;
use effect;
package body effect is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
procedure draw (value : in codex; x, y : in integer) is
begin
null;
end draw;
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
end effect;