home *** CD-ROM | disk | FTP | other *** search
- //
- // RandomEngine
- //
- // Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
- //
-
-
- #import "RandomEngine.h"
-
-
- @implementation RandomEngine
-
-
- + (int)unit
- {
- [self subclassResponsibility:_cmd];
-
- return 0;
- }
-
-
- - makeRandom:(uchar *)storage
- {
- return [self subclassResponsibility:_cmd];
- }
-
-
- @end
-
-
- //
- // End of file.
- //