Panda3D
 All Classes Functions Variables Enumerations
lwoToEgg.h
1 // Filename: lwoToEgg.h
2 // Created by: drose (17Apr01)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef LWOTOEGG_H
16 #define LWOTOEGG_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "somethingToEgg.h"
21 #include "lwoToEggConverter.h"
22 
23 #include "dSearchPath.h"
24 
25 ////////////////////////////////////////////////////////////////////
26 // Class : LwoToEgg
27 // Description : A program to read a Lightwave file and generate an egg
28 // file.
29 ////////////////////////////////////////////////////////////////////
30 class LwoToEgg : public SomethingToEgg {
31 public:
32  LwoToEgg();
33 
34  void run();
35 };
36 
37 #endif
38 
This is the general base class for a file-converter program that reads some model file format and gen...
A program to read a Lightwave file and generate an egg file.
Definition: lwoToEgg.h:30