home *** CD-ROM | disk | FTP | other *** search
- /*
- ZeroModule
- For Resound 2.2
- Sean Luke
- Jan 10 1995
-
- A simple example module which zeroes out the selected sound, to get you
- started using Resound modules. This code is discussed in Resound's Help
- facility, under the section "Building a Resound Module: A Walk-Though".
- For a more sophisticated module, see the API/Math directory.
-
- INTEL READY
-
-
- Copyright (c) 1995 by Sean Luke
-
- Permission to use, copy, modify, and distribute this material
- for any purpose and without fee is hereby granted. SEAN LUKE
- MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
- OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS",
- WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
- */
-
-
-
- #import "Module.h"
-
- @interface ZeroModule:Module
- {
- }
-
- - init;
- - zeroSound:sender;
-
- @end
-