jctest.qc 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright (C) 1996-1997 Id Software, Inc.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation; either version 2 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program; if not, write to the Free Software
  12. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  13. See file, 'COPYING', for details.
  14. */
  15. void() jctrig =
  16. {
  17. dprint ("here\n\n");
  18. lightstyle(0, "az");
  19. };
  20. /*QUAKED trigger_jctest (.5 .5 .5) ?
  21. */
  22. void() trigger_jctest =
  23. {
  24. setsize (self, self.mins, self.maxs);
  25. self.solid = SOLID_EDGE;
  26. self.touch = jctrig;
  27. };