FF7FieldModelExporterPC.cpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. -----------------------------------------------------------------------------
  3. Copyright (c) 26.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
  4. This file is part of Q-Gears
  5. Q-Gears is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, version 2.0 (GPLv2) of the License.
  8. Q-Gears is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. -----------------------------------------------------------------------------
  13. */
  14. #include "FF7FieldModelExporterPC.h"
  15. namespace QGears
  16. {
  17. namespace FF7
  18. {
  19. //----------------------------------------------------------------------
  20. FieldModelExporterPC::FieldModelExporterPC( int argc, char *argv[] ) :
  21. Utility( argc, argv )
  22. {
  23. }
  24. //----------------------------------------------------------------------
  25. FieldModelExporterPC::~FieldModelExporterPC()
  26. {
  27. }
  28. //----------------------------------------------------------------------
  29. String
  30. FieldModelExporterPC::getWindowTitle() const
  31. {
  32. return "FFVII Field Model Exporter PC";
  33. }
  34. //----------------------------------------------------------------------
  35. }
  36. }