home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctchnqs / 1990 / number3 / cons1.pas < prev    next >
Pascal/Delphi Source File  |  1990-05-14  |  284b  |  17 lines

  1. { Listing 4 - Constructors 1 }
  2.  
  3. PROCEDURE Location.Init;
  4. BEGIN
  5.   ListNode.Init;
  6. END;
  7.  
  8. CONSTRUCTOR Tile.Init;
  9. BEGIN
  10.   {This null constructor sets up the VMT for Tiles}
  11. END;
  12.  
  13. CONSTRUCTOR HalfTile.Init;
  14. BEGIN
  15.   {This null constructor sets up the VMT for HalfTiles}
  16. END;
  17.