mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
16 lines
332 B
Ada
16 lines
332 B
Ada
with Ada.Containers.Vectors;
|
|
with Items;
|
|
use Items;
|
|
|
|
package Gilded_Rose is
|
|
package Item_Vecs is new Ada.Containers.Vectors (
|
|
Element_Type => Item,
|
|
Index_Type => Positive
|
|
);
|
|
|
|
type Gilded_Rose is record
|
|
Items : Item_Vecs.Vector;
|
|
end record;
|
|
procedure Update_Quality(Self : in out Gilded_Rose);
|
|
end Gilded_Rose;
|