www.pudn.com > 实景(图形)聊天室源代码(绝对高水 准,超酷).zip > tools.pas


{ *********************************************************************** } 
{                                                                         } 
{ Copular Chat Client v3.0 Source Code                                    } 
{ Tool Libary Unit                                                        } 
{                                                                         } 
{ Copyright (c) 1998-2002 SAF Studio                                      } 
{                                                                         } 
{ Author  : Niu Yu Ping                                                   } 
{ Nickname: DecimalOX                                                     } 
{ Address : Jilin City China                                              } 
{                                                                         } 
{ QICQ    : 103106262                                                     } 
{ Homepage: www.safree.com                                                } 
{ EMail   : decimalox@sohu.com                                            } 
{                                                                         } 
{ *********************************************************************** } 
 
unit tools; 
 
interface 
 
const 
  //least available area of every sprite 
  AVAILABLE_AREA = 10; 
 
  //map width and height 
  MAPW = 1200; 
  MAPH = 1200; 
 
  //least available area of map 
  DL = 10; 
 
  //size of the flag on small map  
  FLagSize = 3; 
 
implementation 
 
end.