Messaging.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. ===========================================================================
  3. Copyright (C) 1999-2005 Id Software, Inc.
  4. This file is part of Quake III Arena source code.
  5. Quake III Arena source code is free software; you can redistribute it
  6. and/or modify it under the terms of the GNU General Public License as
  7. published by the Free Software Foundation; either version 2 of the License,
  8. or (at your option) any later version.
  9. Quake III Arena source code is distributed in the hope that it will be
  10. useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Foobar; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. ===========================================================================
  17. */
  18. //-----------------------------------------------------------------------------
  19. //
  20. // $LogFile$
  21. // $Revision: 1.1.2.1 $
  22. // $Author: ttimo $
  23. // $Date: 2000/02/04 22:59:34 $
  24. // $Log: Messaging.h,v $
  25. // Revision 1.1.2.1 2000/02/04 22:59:34 ttimo
  26. // messaging API preview
  27. //
  28. //
  29. // DESCRIPTION:
  30. // headers for internal classes used in Messaging.cpp
  31. //
  32. #ifndef __MESSAGING_H_
  33. #define __MESSAGING_H_
  34. class CXYWndWrapper : public IXYWndWrapper
  35. {
  36. public:
  37. void SnapToGrid( int x1, int y1, vec3_t pt );
  38. };
  39. #endif