dstrings.c
上传用户:xuyinpeng
上传日期:2021-05-12
资源大小:455k
文件大小:2k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // Emacs style mode select   -*- C++ -*- 
  2. //-----------------------------------------------------------------------------
  3. //
  4. // $Id:$
  5. //
  6. // Copyright (C) 1993-1996 by id Software, Inc.
  7. //
  8. // This source is available for distribution and/or modification
  9. // only under the terms of the DOOM Source Code License as
  10. // published by id Software. All rights reserved.
  11. //
  12. // The source is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
  15. // for more details.
  16. //
  17. // $Log:$
  18. //
  19. // DESCRIPTION:
  20. // Globally defined strings.
  21. // 
  22. //-----------------------------------------------------------------------------
  23. static const char
  24. rcsid[] = "$Id: m_bbox.c,v 1.1 1997/02/03 22:45:10 b1 Exp $";
  25. #ifdef __GNUG__
  26. #pragma implementation "dstrings.h"
  27. #endif
  28. #include "dstrings.h"
  29. char* endmsg[NUM_QUITMESSAGES+1]=
  30. {
  31.   // DOOM1
  32.   QUITMSG,
  33.   "please don't leave, there's morendemons to toast!",
  34.   "let's beat it -- this is turningninto a bloodbath!",
  35.   "i wouldn't leave if i were you.ndos is much worse.",
  36.   "you're trying to say you like dosnbetter than me, right?",
  37.   "don't leave yet -- there's andemon around that corner!",
  38.   "ya know, next time you come in hereni'm gonna toast ya.",
  39.   "go ahead and leave. see if i care."
  40.   // QuitDOOM II messages
  41.   "you want to quit?nthen, thou hast lost an eighth!",
  42.   "don't go now, there's a ndimensional shambler waitingnat the dos prompt!",
  43.   "get outta here and go backnto your boring programs.",
  44.   "if i were your boss, i'd n deathmatch ya in a minute!",
  45.   "look, bud. you leave nownand you forfeit your body count!",
  46.   "just leave. when you comenback, i'll be waiting with a bat.",
  47.   "you're lucky i don't smacknyou for thinking about leaving."
  48.   // FinalDOOM?
  49.   "fuck you, pussy!nget the fuck out!",
  50.   "you quit and i'll jizznin your cystholes!",
  51.   "if you leave, i'll makenthe lord drink my jizz.",
  52.   "hey, ron! can we sayn'fuck' in the game?",
  53.   "i'd leave: this is justnmore monsters and levels.nwhat a load.",
  54.   "suck it down, asshole!nyou're a fucking wimp!",
  55.   "don't quit now! we're nstill spending your money!",
  56.   // Internal debug. Different style, too.
  57.   "THIS IS NO MESSAGE!nPage intentionally left blank."
  58. };
  59.