1. -- 
  2. -- Copyright (c) 2012 Kevin Wellwood 
  3. -- All rights reserved. 
  4. -- 
  5. -- This source code is distributed under the Modified BSD License. For terms and 
  6. -- conditions, see license.txt. 
  7. -- 
  8.  
  9. with Maps;                              use Maps; 
  10.  
  11. package Game_Views.Ked.Toolbar.Layers_Menu is 
  12.  
  13.     -- Builds the gui for the layers menu 
  14.     procedure Make_Menu( view : not null A_Ked_View; 
  15.                          win  : not null A_Window ); 
  16.  
  17.     -- Call this procedure when a new world is loaded, to update the layers menu 
  18.     procedure Update_Menu( view   : not null A_Ked_View; 
  19.                            layers : not null A_Layer_Array ); 
  20.  
  21. end Game_Views.Ked.Toolbar.Layers_Menu;