/* FIle: FL_Panel_init.h */

#ifndef FLPInit_H
#define FLPInit_H

/*

   Example FL_Panel initialization file
   Notes: `;' means all that follows to <cr> is comment
          See RRSD for syntax of the TOOLTYPES
   ; The SIGH-hi initialzation file
   SEED=713            ;Value to begin using for Seed to rand.
   POINTS=30     ;Number of Points to being program with.
   FILE=RAM:FL_030.imp ;Filename for saving Fractal Landscape object.
   end of the example initialization file for SIGH-hi

*/

/* Tool Type Option Names */
enum TheToolTypeNames { FirstToolType = -1, SeedTT, PointXTT, PointYTT, FileTT, LastToolType };

#define DefaultXPoints 30
#define DefaultYPoints 30
#define DefaultFileName "FL_Test.iob"
#define DefaultSeed 713

#define DefaultEnvironFilePath  "ENV:FLP"

#define MAX_FILE_NAME_SIZE 149
#define MAX_DIGIT_COUNT 10

#endif
