home *** CD-ROM | disk | FTP | other *** search
- /* thud.c -- function to produce a short low-frequency sound at the speaker
-
- History rhs 15-mar-87
- */
-
- #include "mancon.h"
- #include "declares.h"
-
- void thud()
- { IMPORT int gi_sound;
- if(gi_sound==ON) sound(80,1);
- }
-
-
- /* Test main */
- /*
- #include <conio.h>
- main()
- {
- while(getch()!=13) thud();
- }
- */