! notes.h
! Release 1
! Copyright 2004 Anson Turner.
!
! To use, invoke the (note) print specifier with a string (or routine):
!
! "This is an example.",(note) "This is the footnote.";
!
! Footnotes will be numbered automatically from 1 onwards. Players can view
! the footnotes with the NOTE (or FOOTNOTE) command:
!
! This is an example. [1]
!
! >NOTE 1
! This is the footnote.
!
! Before including this file, set the constant MAX_FOOTNOTES to the number
! of footnotes that will appear in your implementation:
!
! Constant MAX_FOOTNOTES = 42;
!
! If you don't set it high enough and the system runs out of room to store
! the referenced notes, it will simply start over, numbering the next note
! [1].
!
! And that's it. I made it any easier, you'd be insulted.