Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Entity.cpp 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* -*- Mode: C++; tab-width: 3; indent-tabs-mode: t; c-basic-offset: 3 -*- */
  2. /*================================================================
  3. *
  4. * Project : libHel
  5. * Author : Terry 'Mongoose' Hendrix II
  6. * Website : http://www.westga.edu/~stu7440/
  7. * Email : stu7440@westga.edu
  8. * Object : Entity
  9. * License : No use w/o permission (C) 2002 Mongoose
  10. * Comments: This is the base thing 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.11.09:
  19. * Mongoose - Created
  20. =================================================================*/
  21. #include "Entity.h"
  22. ////////////////////////////////////////////////////////////
  23. // Constructors
  24. ////////////////////////////////////////////////////////////
  25. Entity::Entity()
  26. {
  27. }
  28. Entity::~Entity()
  29. {
  30. }
  31. ////////////////////////////////////////////////////////////
  32. // Public Accessors
  33. ////////////////////////////////////////////////////////////
  34. ////////////////////////////////////////////////////////////
  35. // Public Mutators
  36. ////////////////////////////////////////////////////////////
  37. ////////////////////////////////////////////////////////////
  38. // Private Accessors
  39. ////////////////////////////////////////////////////////////
  40. ////////////////////////////////////////////////////////////
  41. // Private Mutators
  42. ////////////////////////////////////////////////////////////
  43. ////////////////////////////////////////////////////////////
  44. // Unit Test code
  45. ////////////////////////////////////////////////////////////
  46. #ifdef UNIT_TEST_ENTITY
  47. int runEntityUnitTest(int argc, char *argv[])
  48. {
  49. return 0;
  50. }
  51. int main(int argc, char *argv[])
  52. {
  53. Entity test;
  54. printf("[Entity class test]\n");
  55. return runEntityUnitTest(argc, argv);
  56. }
  57. #endif