Panda3D
fltToEgg.h
1 // Filename: fltToEgg.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 FLTTOEGG_H
16 #define FLTTOEGG_H
17 
18 #include "pandatoolbase.h"
19 
20 #include "somethingToEgg.h"
21 #include "fltToEggConverter.h"
22 
23 #include "dSearchPath.h"
24 
25 ////////////////////////////////////////////////////////////////////
26 // Class : FltToEgg
27 // Description : A program to read a flt file and generate an egg
28 // file.
29 ////////////////////////////////////////////////////////////////////
30 class FltToEgg : public SomethingToEgg {
31 public:
32  FltToEgg();
33 
34  void run();
35 
36  bool _compose_transforms;
37 };
38 
39 #endif
40 
A program to read a flt file and generate an egg file.
Definition: fltToEgg.h:30
This is the general base class for a file-converter program that reads some model file format and gen...