Panda3D
xFileToEgg.h
1 // Filename: xFileToEgg.h
2 // Created by: drose (21Jun01)
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 XFILETOEGG_H
16 #define XFILETOEGG_H
17 
18 #include "pandatoolbase.h"
19 #include "somethingToEgg.h"
20 #include "xFileToEggConverter.h"
21 
22 #include "dSearchPath.h"
23 
24 ////////////////////////////////////////////////////////////////////
25 // Class : XFileToEgg
26 // Description : A program to read a DirectX "x" file and generate an
27 // egg file.
28 ////////////////////////////////////////////////////////////////////
29 class XFileToEgg : public SomethingToEgg {
30 public:
31  XFileToEgg();
32 
33  void run();
34 
35 public:
36  bool _make_char;
37  string _char_name;
38  double _frame_rate;
39  bool _keep_model;
40  bool _keep_animation;
41 };
42 
43 #endif
44 
This is the general base class for a file-converter program that reads some model file format and gen...
A program to read a DirectX "x" file and generate an egg file.
Definition: xFileToEgg.h:29