| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- -----------------------------------------------------------------------------
- Copyright (c) 26.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
- This file is part of Q-Gears
- Q-Gears is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, version 2.0 (GPLv2) of the License.
- Q-Gears is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- -----------------------------------------------------------------------------
- */
- #include "FF7FieldModelExporterPC.h"
- namespace QGears
- {
- namespace FF7
- {
- //----------------------------------------------------------------------
- FieldModelExporterPC::FieldModelExporterPC( int argc, char *argv[] ) :
- Utility( argc, argv )
- {
- }
- //----------------------------------------------------------------------
- FieldModelExporterPC::~FieldModelExporterPC()
- {
- }
- //----------------------------------------------------------------------
- String
- FieldModelExporterPC::getWindowTitle() const
- {
- return "FFVII Field Model Exporter PC";
- }
- //----------------------------------------------------------------------
- }
- }
|