Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Light.cpp 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
  2. /*================================================================
  3. *
  4. * Project : Freyja
  5. * Author : Terry 'Mongoose' Hendrix II
  6. * Website : http://www.westga.edu/~stu7440/
  7. * Email : stu7440@westga.edu
  8. * Object : Light
  9. * License : No use w/o permission (C) 2002 Mongoose
  10. * Comments: This is the GL light class
  11. *
  12. *
  13. * This file was generated using Mongoose's C++
  14. * template generator script. <stu7440@westga.edu>
  15. *
  16. *-- History -------------------------------------------------
  17. *
  18. * 2002.01.27:
  19. * Mongoose - Created
  20. =================================================================*/
  21. #include "Light.h"
  22. Light::Light()
  23. {
  24. }
  25. Light::~Light()
  26. {
  27. }
  28. ////////////////////////////////////////////////////////////
  29. // Unit Test code
  30. ////////////////////////////////////////////////////////////
  31. #ifdef LIGHT_UNIT_TEST
  32. int runLightUnitTest(int argc, char *argv[])
  33. {
  34. return 0;
  35. }
  36. int main(int argc, char *argv[])
  37. {
  38. printf("[Light class test]\n");
  39. return runLightUnitTest(argc, argv);
  40. }
  41. #endif