lwoToEgg.h 664 B

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * PANDA 3D SOFTWARE
  3. * Copyright (c) Carnegie Mellon University. All rights reserved.
  4. *
  5. * All use of this software is subject to the terms of the revised BSD
  6. * license. You should have received a copy of this license along
  7. * with this source code in a file named "LICENSE."
  8. *
  9. * @file lwoToEgg.h
  10. * @author drose
  11. * @date 2001-04-17
  12. */
  13. #ifndef LWOTOEGG_H
  14. #define LWOTOEGG_H
  15. #include "pandatoolbase.h"
  16. #include "somethingToEgg.h"
  17. #include "lwoToEggConverter.h"
  18. #include "dSearchPath.h"
  19. /**
  20. * A program to read a Lightwave file and generate an egg file.
  21. */
  22. class LwoToEgg : public SomethingToEgg {
  23. public:
  24. LwoToEgg();
  25. void run();
  26. };
  27. #endif