home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Life 1.0d2 / StupidWay.h < prev   
Encoding:
Text File  |  1995-07-10  |  435 b   |  18 lines  |  [TEXT/KAHL]

  1. // StupidWay.h
  2. // Handle Life propagation the stupid, but simple way
  3. // Copyright ©1995 Michael D. Crawford.  All Rights Reserved.
  4. // 23 Jun 95 Mike Crawford crawford@scruznet.com
  5. //
  6. // Revision History:
  7. // 12 Jul 95    MDC    New today
  8.  
  9. typedef struct{
  10.     GWorldPtr    hip;
  11.     GWorldPtr    hop;
  12.     long        height;            // Yes, this is repeated here
  13.     long        width;
  14.     Boolean        isHip;
  15. }tStupidData, *tStupidPtr;
  16.  
  17. OSErr AddStupidWay( tLifeProcsPtr lifeProcPtr );
  18.