├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules ├── FindCURL.cmake ├── FindSDL2_gfx.cmake ├── FindSDL2_image.cmake ├── FindSDL2_mixer.cmake ├── FindSDL2_ttf.cmake ├── FindSDL_gfx.cmake ├── FindSQLITE3.cmake └── FindTinyXML2.cmake ├── CREDITS ├── Core ├── .gitignore ├── CMakeLists.txt ├── conanfile.txt ├── config.ini ├── data │ ├── countries.xml │ ├── countries │ │ ├── ad │ │ │ └── flag.png │ │ ├── ae │ │ │ └── flag.png │ │ ├── af │ │ │ └── flag.png │ │ ├── ag │ │ │ └── flag.png │ │ ├── ai │ │ │ └── flag.png │ │ ├── al │ │ │ └── flag.png │ │ ├── am │ │ │ └── flag.png │ │ ├── ao │ │ │ └── flag.png │ │ ├── ar │ │ │ └── flag.png │ │ ├── as │ │ │ └── flag.png │ │ ├── at │ │ │ └── flag.png │ │ ├── au │ │ │ └── flag.png │ │ ├── aw │ │ │ └── flag.png │ │ ├── ba │ │ │ └── flag.png │ │ ├── bb │ │ │ └── flag.png │ │ ├── bd │ │ │ └── flag.png │ │ ├── be │ │ │ └── flag.png │ │ ├── bf │ │ │ └── flag.png │ │ ├── bg │ │ │ └── flag.png │ │ ├── bh │ │ │ └── flag.png │ │ ├── bi │ │ │ └── flag.png │ │ ├── bj │ │ │ └── flag.png │ │ ├── bl │ │ │ └── flag.png │ │ ├── bm │ │ │ └── flag.png │ │ ├── bn │ │ │ └── flag.png │ │ ├── bo │ │ │ └── flag.png │ │ ├── bq │ │ │ └── flag.png │ │ ├── br │ │ │ └── flag.png │ │ ├── bs │ │ │ └── flag.png │ │ ├── bt │ │ │ └── flag.png │ │ ├── bv │ │ │ └── flag.png │ │ ├── bw │ │ │ └── flag.png │ │ ├── by │ │ │ └── flag.png │ │ ├── bz │ │ │ └── flag.png │ │ ├── ca │ │ │ └── flag.png │ │ ├── cf │ │ │ └── flag.png │ │ ├── ch │ │ │ └── flag.png │ │ ├── ck │ │ │ └── flag.png │ │ ├── cl │ │ │ └── flag.png │ │ ├── cm │ │ │ └── flag.png │ │ ├── cn │ │ │ └── flag.png │ │ ├── co │ │ │ └── flag.png │ │ ├── cr │ │ │ └── flag.png │ │ ├── cu │ │ │ └── flag.png │ │ ├── cv │ │ │ └── flag.png │ │ ├── cx │ │ │ └── flag.png │ │ ├── de │ │ │ └── flag.png │ │ ├── default-photo.jpg │ │ ├── dj │ │ │ └── flag.png │ │ ├── dk │ │ │ └── flag.png │ │ ├── dm │ │ │ └── flag.png │ │ ├── do │ │ │ └── flag.png │ │ ├── dz │ │ │ └── flag.png │ │ ├── ec │ │ │ └── flag.png │ │ ├── ee │ │ │ └── flag.png │ │ ├── eg │ │ │ └── flag.png │ │ ├── er │ │ │ └── flag.png │ │ ├── es │ │ │ └── flag.png │ │ ├── et │ │ │ └── flag.png │ │ ├── fi │ │ │ └── flag.png │ │ ├── fj │ │ │ └── flag.png │ │ ├── fk │ │ │ └── flag.png │ │ ├── fm │ │ │ └── flag.png │ │ ├── fo │ │ │ └── flag.png │ │ ├── fr │ │ │ └── flag.png │ │ ├── ga │ │ │ └── flag.png │ │ ├── gb │ │ │ └── flag.png │ │ ├── gd │ │ │ └── flag.png │ │ ├── gf │ │ │ └── flag.png │ │ ├── gg │ │ │ └── flag.png │ │ ├── gh │ │ │ └── flag.png │ │ ├── gi │ │ │ └── flag.png │ │ ├── gl │ │ │ └── flag.png │ │ ├── gm │ │ │ └── flag.png │ │ ├── gn │ │ │ └── flag.png │ │ ├── gp │ │ │ └── flag.png │ │ ├── gq │ │ │ └── flag.png │ │ ├── gr │ │ │ └── flag.png │ │ ├── gs │ │ │ └── flag.png │ │ ├── gt │ │ │ └── flag.png │ │ ├── gu │ │ │ └── flag.png │ │ ├── gw │ │ │ └── flag.png │ │ ├── gy │ │ │ └── flag.png │ │ ├── hk │ │ │ └── flag.png │ │ ├── hm │ │ │ └── flag.png │ │ ├── hn │ │ │ └── flag.png │ │ ├── hr │ │ │ └── flag.png │ │ ├── ht │ │ │ └── flag.png │ │ ├── hu │ │ │ └── flag.png │ │ ├── id │ │ │ └── flag.png │ │ ├── ie │ │ │ └── flag.png │ │ ├── il │ │ │ └── flag.png │ │ ├── im │ │ │ └── flag.png │ │ ├── in │ │ │ └── flag.png │ │ ├── io │ │ │ └── flag.png │ │ ├── iq │ │ │ └── flag.png │ │ ├── ir │ │ │ └── flag.png │ │ ├── is │ │ │ └── flag.png │ │ ├── it │ │ │ └── flag.png │ │ ├── je │ │ │ └── flag.png │ │ ├── jm │ │ │ └── flag.png │ │ ├── jo │ │ │ └── flag.png │ │ ├── jp │ │ │ └── flag.png │ │ ├── ke │ │ │ └── flag.png │ │ ├── kg │ │ │ └── flag.png │ │ ├── kh │ │ │ └── flag.png │ │ ├── ki │ │ │ └── flag.png │ │ ├── km │ │ │ └── flag.png │ │ ├── kn │ │ │ └── flag.png │ │ ├── kp │ │ │ └── flag.png │ │ ├── kr │ │ │ └── flag.png │ │ ├── kw │ │ │ └── flag.png │ │ ├── ky │ │ │ └── flag.png │ │ ├── kz │ │ │ └── flag.png │ │ ├── la │ │ │ └── flag.png │ │ ├── lb │ │ │ └── flag.png │ │ ├── lc │ │ │ └── flag.png │ │ ├── li │ │ │ └── flag.png │ │ ├── lk │ │ │ └── flag.png │ │ ├── lr │ │ │ └── flag.png │ │ ├── ls │ │ │ └── flag.png │ │ ├── lt │ │ │ └── flag.png │ │ ├── lu │ │ │ └── flag.png │ │ ├── lv │ │ │ └── flag.png │ │ ├── ly │ │ │ └── flag.png │ │ ├── ma │ │ │ └── flag.png │ │ ├── mc │ │ │ └── flag.png │ │ ├── md │ │ │ └── flag.png │ │ ├── me │ │ │ └── flag.png │ │ ├── mf │ │ │ └── flag.png │ │ ├── mg │ │ │ └── flag.png │ │ ├── mh │ │ │ └── flag.png │ │ ├── mk │ │ │ └── flag.png │ │ ├── ml │ │ │ └── flag.png │ │ ├── mn │ │ │ └── flag.png │ │ ├── mp │ │ │ └── flag.png │ │ ├── mq │ │ │ └── flag.png │ │ ├── mr │ │ │ └── flag.png │ │ ├── ms │ │ │ └── flag.png │ │ ├── mt │ │ │ └── flag.png │ │ ├── mu │ │ │ └── flag.png │ │ ├── mv │ │ │ └── flag.png │ │ ├── mw │ │ │ └── flag.png │ │ ├── mx │ │ │ └── flag.png │ │ ├── my │ │ │ └── flag.png │ │ ├── mz │ │ │ └── flag.png │ │ ├── na │ │ │ └── flag.png │ │ ├── nc │ │ │ └── flag.png │ │ ├── ne │ │ │ └── flag.png │ │ ├── nf │ │ │ └── flag.png │ │ ├── ng │ │ │ └── flag.png │ │ ├── ni │ │ │ └── flag.png │ │ ├── nl │ │ │ └── flag.png │ │ ├── no │ │ │ └── flag.png │ │ ├── np │ │ │ └── flag.png │ │ ├── nr │ │ │ └── flag.png │ │ ├── nu │ │ │ └── flag.png │ │ ├── nz │ │ │ └── flag.png │ │ ├── om │ │ │ └── flag.png │ │ ├── pa │ │ │ └── flag.png │ │ ├── pe │ │ │ └── flag.png │ │ ├── pf │ │ │ └── flag.png │ │ ├── pg │ │ │ └── flag.png │ │ ├── ph │ │ │ └── flag.png │ │ ├── pk │ │ │ └── flag.png │ │ ├── pl │ │ │ └── flag.png │ │ ├── pm │ │ │ └── flag.png │ │ ├── pn │ │ │ └── flag.png │ │ ├── pr │ │ │ └── flag.png │ │ ├── ps │ │ │ └── flag.png │ │ ├── pt │ │ │ └── flag.png │ │ ├── pw │ │ │ └── flag.png │ │ ├── py │ │ │ └── flag.png │ │ ├── qa │ │ │ └── flag.png │ │ ├── re │ │ │ └── flag.png │ │ ├── ro │ │ │ └── flag.png │ │ ├── rs │ │ │ └── flag.png │ │ ├── ru │ │ │ └── flag.png │ │ ├── rw │ │ │ └── flag.png │ │ ├── sa │ │ │ └── flag.png │ │ ├── sb │ │ │ └── flag.png │ │ ├── sc │ │ │ └── flag.png │ │ ├── sd │ │ │ └── flag.png │ │ ├── se │ │ │ └── flag.png │ │ ├── sg │ │ │ └── flag.png │ │ ├── si │ │ │ └── flag.png │ │ ├── sk │ │ │ └── flag.png │ │ ├── sl │ │ │ └── flag.png │ │ ├── sm │ │ │ └── flag.png │ │ ├── sn │ │ │ └── flag.png │ │ ├── so │ │ │ └── flag.png │ │ ├── sr │ │ │ └── flag.png │ │ ├── ss │ │ │ └── flag.png │ │ ├── sv │ │ │ └── flag.png │ │ ├── sx │ │ │ └── flag.png │ │ ├── sy │ │ │ └── flag.png │ │ ├── sz │ │ │ └── flag.png │ │ ├── tc │ │ │ └── flag.png │ │ ├── td │ │ │ └── flag.png │ │ ├── tf │ │ │ └── flag.png │ │ ├── tg │ │ │ └── flag.png │ │ ├── th │ │ │ └── flag.png │ │ ├── tj │ │ │ └── flag.png │ │ ├── tk │ │ │ └── flag.png │ │ ├── tm │ │ │ └── flag.png │ │ ├── tn │ │ │ └── flag.png │ │ ├── to │ │ │ └── flag.png │ │ ├── tt │ │ │ └── flag.png │ │ ├── tv │ │ │ └── flag.png │ │ ├── tw │ │ │ └── flag.png │ │ ├── tz │ │ │ └── flag.png │ │ ├── ua │ │ │ └── flag.png │ │ ├── ug │ │ │ └── flag.png │ │ ├── us │ │ │ └── flag.png │ │ ├── uy │ │ │ └── flag.png │ │ ├── uz │ │ │ └── flag.png │ │ ├── va │ │ │ └── flag.png │ │ ├── vc │ │ │ └── flag.png │ │ ├── ve │ │ │ └── flag.png │ │ ├── vg │ │ │ └── flag.png │ │ ├── vn │ │ │ └── flag.png │ │ ├── vu │ │ │ └── flag.png │ │ ├── wf │ │ │ └── flag.png │ │ ├── ws │ │ │ └── flag.png │ │ ├── xk │ │ │ └── flag.png │ │ ├── ye │ │ │ └── flag.png │ │ ├── yt │ │ │ └── flag.png │ │ ├── za │ │ │ └── flag.png │ │ ├── zm │ │ │ └── flag.png │ │ └── zw │ │ │ └── flag.png │ ├── criminals.xml │ ├── criminals │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ └── default-game.db ├── dev │ ├── create_db.sh │ ├── data.sql │ ├── resources │ │ ├── bullet.xcf │ │ ├── images │ │ │ ├── hall_of_fame_background.xcf │ │ │ └── medals.jpg │ │ ├── magn_glass.xcf │ │ ├── map_bg.xcf │ │ └── notebook_background.xcf │ └── struct.sql ├── resources │ ├── fonts │ │ ├── FreeMono.ttf │ │ ├── FreeMonoBold.ttf │ │ ├── FreeMonoBoldOblique.ttf │ │ ├── FreeMonoOblique.ttf │ │ ├── FreeSans.ttf │ │ ├── FreeSansBold.ttf │ │ ├── FreeSansBoldOblique.ttf │ │ ├── FreeSansOblique.ttf │ │ ├── FreeSerif.ttf │ │ ├── FreeSerifBold.ttf │ │ ├── FreeSerifBoldItalic.ttf │ │ ├── FreeSerifItalic.ttf │ │ ├── NotCourierSans-Bold.ttf │ │ └── gtw.ttf │ ├── icons │ │ ├── award_star_bronze_1.png │ │ ├── award_star_bronze_2.png │ │ ├── award_star_bronze_3.png │ │ ├── award_star_gold_1.png │ │ ├── award_star_gold_2.png │ │ ├── award_star_gold_3.png │ │ ├── award_star_silver_1.png │ │ ├── award_star_silver_2.png │ │ ├── award_star_silver_3.png │ │ ├── icon.png │ │ ├── medal_bronze_1.png │ │ ├── medal_bronze_2.png │ │ ├── medal_bronze_3.png │ │ ├── medal_gold_1.png │ │ ├── medal_gold_2.png │ │ ├── medal_gold_3.png │ │ ├── medal_silver_1.png │ │ ├── medal_silver_2.png │ │ ├── medal_silver_3.png │ │ └── shield.png │ ├── images │ │ ├── ballon.png │ │ ├── bullet.png │ │ ├── clock.png │ │ ├── cursor.xpm │ │ ├── dossiers │ │ │ └── background.png │ │ ├── empty_background.jpg │ │ ├── game │ │ │ ├── button_capture.png │ │ │ ├── button_places.png │ │ │ ├── button_quit.png │ │ │ ├── button_travel.png │ │ │ ├── clock.png │ │ │ ├── clock_small.png │ │ │ ├── polaroid.png │ │ │ └── tick.png │ │ ├── hall_of_fame_background.png │ │ ├── magn_glass.png │ │ ├── mainwindow_bg.png │ │ ├── map │ │ │ ├── airplane-30.png │ │ │ ├── airplane.png │ │ │ ├── flight_target.gif │ │ │ ├── flight_target_over.gif │ │ │ ├── mercator-map-small.png │ │ │ ├── mercator-map-wo-legend.png │ │ │ └── mercator-map.png │ │ ├── menu │ │ │ ├── background.png │ │ │ ├── menu_bg.jpg │ │ │ ├── menu_note.png │ │ │ └── pipe.png │ │ ├── notebook.png │ │ ├── notebook_background.png │ │ ├── places │ │ │ ├── airport.png │ │ │ ├── airport_character.png │ │ │ ├── dialog.png │ │ │ ├── harbor.png │ │ │ ├── harbor_character.png │ │ │ ├── hotel.png │ │ │ ├── hotel_character.png │ │ │ ├── library.png │ │ │ ├── library_character.png │ │ │ ├── museum.png │ │ │ └── museum_character.png │ │ ├── sprites │ │ │ ├── ajax-loader.gif │ │ │ ├── frame0.png │ │ │ ├── frame1.png │ │ │ ├── frame10.png │ │ │ ├── frame11.png │ │ │ ├── frame12.png │ │ │ ├── frame2.png │ │ │ ├── frame3.png │ │ │ ├── frame4.png │ │ │ ├── frame5.png │ │ │ ├── frame6.png │ │ │ ├── frame7.png │ │ │ ├── frame8.png │ │ │ └── frame9.png │ │ └── widgets │ │ │ ├── button-over_center (copy).png │ │ │ ├── button-over_center.png │ │ │ ├── button-over_left.png │ │ │ ├── button-over_right.png │ │ │ ├── button_center (copy).png │ │ │ ├── button_center.png │ │ │ ├── button_left.png │ │ │ └── button_right.png │ ├── languages │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ ├── logo │ │ ├── thief_128.png │ │ ├── thief_256.png │ │ ├── thief_32.png │ │ ├── thief_48.png │ │ └── thief_64.png │ ├── music │ │ ├── detective.mp3 │ │ ├── music.mid │ │ └── music.ogg │ └── sounds │ │ ├── airplane.wav │ │ ├── applauses.mp3 │ │ ├── computer.wav │ │ ├── gunshot.wav │ │ ├── keyboard_click.wav │ │ ├── menu.wav │ │ ├── step.wav │ │ ├── time.wav │ │ └── weird_loop.wav └── src │ ├── Main.cpp │ ├── Version.hpp │ ├── Version.hpp.in │ ├── entities │ ├── Clue.cpp │ ├── Clue.h │ ├── ClueFactory.cpp │ ├── ClueFactory.h │ ├── CountriesManager.cpp │ ├── CountriesManager.h │ ├── Country.cpp │ ├── Country.h │ ├── Criminal.cpp │ ├── Criminal.h │ ├── CriminalsManager.cpp │ ├── CriminalsManager.h │ ├── Genre.h │ ├── GeoCoordinates.h │ ├── Place.cpp │ ├── Place.h │ ├── PlacesManager.cpp │ ├── PlacesManager.h │ ├── Player.cpp │ ├── Player.h │ ├── PlayerCase.cpp │ ├── PlayerCase.h │ ├── PlayerCaseManager.cpp │ ├── PlayerCaseManager.h │ ├── PlayersManager.cpp │ ├── PlayersManager.h │ └── format │ │ ├── CountryDescriptionGenerator.cpp │ │ ├── CountryDescriptionGenerator.h │ │ ├── GenreFormatter.cpp │ │ └── GenreFormatter.h │ ├── screens │ ├── AssignmentScreen.cpp │ ├── AssignmentScreen.h │ ├── ComputerScreen.cpp │ ├── ComputerScreen.h │ ├── CountryDrawing.cpp │ ├── CountryDrawing.h │ ├── DossierScreen.cpp │ ├── DossierScreen.h │ ├── Game.cpp │ ├── Game.h │ ├── GameOverScreen.cpp │ ├── GameOverScreen.h │ ├── HallOfFameScreen.cpp │ ├── HallOfFameScreen.h │ ├── HelpScreen.cpp │ ├── HelpScreen.h │ ├── IntroScreen.cpp │ ├── IntroScreen.h │ ├── Map.cpp │ ├── Map.h │ ├── MenuScreen.cpp │ ├── MenuScreen.h │ ├── OptionsScreen.cpp │ ├── OptionsScreen.h │ ├── PlaceSelector.cpp │ ├── PlaceSelector.h │ ├── ProfileScreen.cpp │ ├── ProfileScreen.h │ └── handlers │ │ ├── GameEventHandler.cpp │ │ └── GameEventHandler.h │ ├── ui │ ├── Clock.cpp │ ├── Clock.h │ └── widgets │ │ ├── InputBox.cpp │ │ ├── InputBox.h │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── MenuItem.cpp │ │ ├── MenuItem.h │ │ ├── SquareButton.cpp │ │ └── SquareButton.h │ └── utilities │ ├── Configurator.cpp │ ├── Configurator.h │ ├── DateTime.cpp │ ├── DateTime.h │ ├── Translator.cpp │ ├── Translator.h │ ├── Updater.cpp │ ├── Updater.h │ └── fx │ ├── Sprite.cpp │ └── Sprite.h ├── Kangaroo ├── .gitignore ├── CMakeLists.txt ├── CMakeModules │ ├── FindSDL2_gfx.cmake │ ├── FindSDL2_image.cmake │ ├── FindSDL2_mixer.cmake │ ├── FindSDL2_ttf.cmake │ └── FindSDL_gfx.cmake ├── include │ ├── Area.h │ ├── Color.h │ ├── CoreService.h │ ├── Database.h │ ├── DialogFactory.h │ ├── Dimension.h │ ├── EventHandler.h │ ├── FileUtils.h │ ├── Font.h │ ├── FontManager.h │ ├── FontService.h │ ├── FrameRegulator.h │ ├── GameObject.h │ ├── HttpClient.h │ ├── MathUtil.h │ ├── MediaManager.h │ ├── MediaMusic.h │ ├── MediaSound.h │ ├── MixerService.h │ ├── MouseCursor.h │ ├── Point.h │ ├── Properties.h │ ├── Random.h │ ├── Renderer.h │ ├── ResultSet.h │ ├── Scene.h │ ├── SensitiveAreas.h │ ├── Service.h │ ├── Services.h │ ├── StringUtil.h │ ├── Surface.h │ ├── SurfaceUtil.h │ ├── Text.h │ ├── TextUtils.h │ ├── Texture.h │ ├── Window.h │ └── components │ │ ├── AbstractDialog.h │ │ ├── ConfirmationDialog.h │ │ └── InformationDialog.h └── src │ ├── Area.cpp │ ├── Color.cpp │ ├── CoreService.cpp │ ├── Database.cpp │ ├── DialogFactory.cpp │ ├── Dimension.cpp │ ├── EventHandler.cpp │ ├── FileUtlis.cpp │ ├── Font.cpp │ ├── FontManager.cpp │ ├── FontService.cpp │ ├── FrameRegulator.cpp │ ├── HttpClient.cpp │ ├── MathUtil.cpp │ ├── MediaManager.cpp │ ├── MediaMusic.cpp │ ├── MediaSound.cpp │ ├── MixerService.cpp │ ├── MouseCursor.cpp │ ├── Point.cpp │ ├── Properties.cpp │ ├── Random.cpp │ ├── Renderer.cpp │ ├── ResultSet.cpp │ ├── Scene.cpp │ ├── SensitiveAreas.cpp │ ├── Services.cpp │ ├── StringUtil.cpp │ ├── Surface.cpp │ ├── SurfaceUtil.cpp │ ├── Text.cpp │ ├── TextUtils.cpp │ ├── Texture.cpp │ ├── Window.cpp │ └── components │ ├── ConfirmationDialog.cpp │ └── InformationDialog.cpp ├── LICENSE └── README.md /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindCURL.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSDL_gfx.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSQLITE3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindSQLITE3.cmake -------------------------------------------------------------------------------- /CMakeModules/FindTinyXML2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CMakeModules/FindTinyXML2.cmake -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/CREDITS -------------------------------------------------------------------------------- /Core/.gitignore: -------------------------------------------------------------------------------- 1 | *conan* 2 | *.cmake 3 | CMakePresets.json 4 | -------------------------------------------------------------------------------- /Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Core/conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/conanfile.txt -------------------------------------------------------------------------------- /Core/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/config.ini -------------------------------------------------------------------------------- /Core/data/countries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries.xml -------------------------------------------------------------------------------- /Core/data/countries/ad/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ad/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ae/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ae/flag.png -------------------------------------------------------------------------------- /Core/data/countries/af/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/af/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ag/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ag/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ai/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ai/flag.png -------------------------------------------------------------------------------- /Core/data/countries/al/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/al/flag.png -------------------------------------------------------------------------------- /Core/data/countries/am/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/am/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ao/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ao/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ar/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ar/flag.png -------------------------------------------------------------------------------- /Core/data/countries/as/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/as/flag.png -------------------------------------------------------------------------------- /Core/data/countries/at/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/at/flag.png -------------------------------------------------------------------------------- /Core/data/countries/au/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/au/flag.png -------------------------------------------------------------------------------- /Core/data/countries/aw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/aw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ba/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ba/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bb/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bb/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bd/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bd/flag.png -------------------------------------------------------------------------------- /Core/data/countries/be/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/be/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bh/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bh/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bi/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bi/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bj/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bj/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bo/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bo/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bq/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bq/flag.png -------------------------------------------------------------------------------- /Core/data/countries/br/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/br/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bs/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bs/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/by/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/by/flag.png -------------------------------------------------------------------------------- /Core/data/countries/bz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/bz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ca/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ca/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ch/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ch/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ck/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ck/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/co/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/co/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/cx/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/cx/flag.png -------------------------------------------------------------------------------- /Core/data/countries/de/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/de/flag.png -------------------------------------------------------------------------------- /Core/data/countries/default-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/default-photo.jpg -------------------------------------------------------------------------------- /Core/data/countries/dj/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/dj/flag.png -------------------------------------------------------------------------------- /Core/data/countries/dk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/dk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/dm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/dm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/do/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/do/flag.png -------------------------------------------------------------------------------- /Core/data/countries/dz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/dz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ec/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ec/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ee/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ee/flag.png -------------------------------------------------------------------------------- /Core/data/countries/eg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/eg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/er/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/er/flag.png -------------------------------------------------------------------------------- /Core/data/countries/es/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/es/flag.png -------------------------------------------------------------------------------- /Core/data/countries/et/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/et/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fi/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fi/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fj/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fj/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fo/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fo/flag.png -------------------------------------------------------------------------------- /Core/data/countries/fr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/fr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ga/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ga/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gb/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gb/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gd/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gd/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gh/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gh/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gi/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gi/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gp/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gp/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gq/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gq/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gs/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gs/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/gy/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/gy/flag.png -------------------------------------------------------------------------------- /Core/data/countries/hk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/hk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/hm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/hm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/hn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/hn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/hr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/hr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ht/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ht/flag.png -------------------------------------------------------------------------------- /Core/data/countries/hu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/hu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/id/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/id/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ie/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ie/flag.png -------------------------------------------------------------------------------- /Core/data/countries/il/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/il/flag.png -------------------------------------------------------------------------------- /Core/data/countries/im/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/im/flag.png -------------------------------------------------------------------------------- /Core/data/countries/in/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/in/flag.png -------------------------------------------------------------------------------- /Core/data/countries/io/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/io/flag.png -------------------------------------------------------------------------------- /Core/data/countries/iq/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/iq/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ir/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ir/flag.png -------------------------------------------------------------------------------- /Core/data/countries/is/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/is/flag.png -------------------------------------------------------------------------------- /Core/data/countries/it/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/it/flag.png -------------------------------------------------------------------------------- /Core/data/countries/je/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/je/flag.png -------------------------------------------------------------------------------- /Core/data/countries/jm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/jm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/jo/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/jo/flag.png -------------------------------------------------------------------------------- /Core/data/countries/jp/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/jp/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ke/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ke/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kh/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kh/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ki/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ki/flag.png -------------------------------------------------------------------------------- /Core/data/countries/km/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/km/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kp/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kp/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ky/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ky/flag.png -------------------------------------------------------------------------------- /Core/data/countries/kz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/kz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/la/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/la/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lb/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lb/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/li/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/li/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ls/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ls/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/lv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/lv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ly/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ly/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ma/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ma/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/md/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/md/flag.png -------------------------------------------------------------------------------- /Core/data/countries/me/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/me/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mh/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mh/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ml/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ml/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mp/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mp/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mq/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mq/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ms/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ms/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mx/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mx/flag.png -------------------------------------------------------------------------------- /Core/data/countries/my/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/my/flag.png -------------------------------------------------------------------------------- /Core/data/countries/mz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/mz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/na/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/na/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ne/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ne/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ng/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ng/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ni/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ni/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/no/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/no/flag.png -------------------------------------------------------------------------------- /Core/data/countries/np/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/np/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/nz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/nz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/om/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/om/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pa/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pa/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pe/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pe/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ph/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ph/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ps/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ps/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/pw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/pw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/py/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/py/flag.png -------------------------------------------------------------------------------- /Core/data/countries/qa/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/qa/flag.png -------------------------------------------------------------------------------- /Core/data/countries/re/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/re/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ro/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ro/flag.png -------------------------------------------------------------------------------- /Core/data/countries/rs/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/rs/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ru/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ru/flag.png -------------------------------------------------------------------------------- /Core/data/countries/rw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/rw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sa/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sa/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sb/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sb/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sd/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sd/flag.png -------------------------------------------------------------------------------- /Core/data/countries/se/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/se/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/si/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/si/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sl/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/so/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/so/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sr/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ss/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ss/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sx/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sx/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sy/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sy/flag.png -------------------------------------------------------------------------------- /Core/data/countries/sz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/sz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/td/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/td/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/th/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/th/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tj/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tj/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/to/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/to/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tv/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tv/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tw/flag.png -------------------------------------------------------------------------------- /Core/data/countries/tz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/tz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ua/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ua/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ug/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ug/flag.png -------------------------------------------------------------------------------- /Core/data/countries/us/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/us/flag.png -------------------------------------------------------------------------------- /Core/data/countries/uy/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/uy/flag.png -------------------------------------------------------------------------------- /Core/data/countries/uz/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/uz/flag.png -------------------------------------------------------------------------------- /Core/data/countries/va/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/va/flag.png -------------------------------------------------------------------------------- /Core/data/countries/vc/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/vc/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ve/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ve/flag.png -------------------------------------------------------------------------------- /Core/data/countries/vg/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/vg/flag.png -------------------------------------------------------------------------------- /Core/data/countries/vn/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/vn/flag.png -------------------------------------------------------------------------------- /Core/data/countries/vu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/vu/flag.png -------------------------------------------------------------------------------- /Core/data/countries/wf/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/wf/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ws/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ws/flag.png -------------------------------------------------------------------------------- /Core/data/countries/xk/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/xk/flag.png -------------------------------------------------------------------------------- /Core/data/countries/ye/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/ye/flag.png -------------------------------------------------------------------------------- /Core/data/countries/yt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/yt/flag.png -------------------------------------------------------------------------------- /Core/data/countries/za/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/za/flag.png -------------------------------------------------------------------------------- /Core/data/countries/zm/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/zm/flag.png -------------------------------------------------------------------------------- /Core/data/countries/zw/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/countries/zw/flag.png -------------------------------------------------------------------------------- /Core/data/criminals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals.xml -------------------------------------------------------------------------------- /Core/data/criminals/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals/1.jpg -------------------------------------------------------------------------------- /Core/data/criminals/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals/2.jpg -------------------------------------------------------------------------------- /Core/data/criminals/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals/3.jpg -------------------------------------------------------------------------------- /Core/data/criminals/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals/4.jpg -------------------------------------------------------------------------------- /Core/data/criminals/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/criminals/5.jpg -------------------------------------------------------------------------------- /Core/data/default-game.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/data/default-game.db -------------------------------------------------------------------------------- /Core/dev/create_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/create_db.sh -------------------------------------------------------------------------------- /Core/dev/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/data.sql -------------------------------------------------------------------------------- /Core/dev/resources/bullet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/bullet.xcf -------------------------------------------------------------------------------- /Core/dev/resources/images/hall_of_fame_background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/images/hall_of_fame_background.xcf -------------------------------------------------------------------------------- /Core/dev/resources/images/medals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/images/medals.jpg -------------------------------------------------------------------------------- /Core/dev/resources/magn_glass.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/magn_glass.xcf -------------------------------------------------------------------------------- /Core/dev/resources/map_bg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/map_bg.xcf -------------------------------------------------------------------------------- /Core/dev/resources/notebook_background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/resources/notebook_background.xcf -------------------------------------------------------------------------------- /Core/dev/struct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/dev/struct.sql -------------------------------------------------------------------------------- /Core/resources/fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeMonoBold.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeMonoBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeMonoBoldOblique.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeMonoOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeMonoOblique.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSansBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSansBoldOblique.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSansOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSansOblique.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSerif.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSerifBold.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSerifBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSerifBoldItalic.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/NotCourierSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/NotCourierSans-Bold.ttf -------------------------------------------------------------------------------- /Core/resources/fonts/gtw.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/fonts/gtw.ttf -------------------------------------------------------------------------------- /Core/resources/icons/award_star_bronze_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_bronze_1.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_bronze_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_bronze_2.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_bronze_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_bronze_3.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_gold_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_gold_1.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_gold_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_gold_2.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_gold_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_gold_3.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_silver_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_silver_1.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_silver_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_silver_2.png -------------------------------------------------------------------------------- /Core/resources/icons/award_star_silver_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/award_star_silver_3.png -------------------------------------------------------------------------------- /Core/resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/icon.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_bronze_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_bronze_1.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_bronze_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_bronze_2.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_bronze_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_bronze_3.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_gold_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_gold_1.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_gold_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_gold_2.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_gold_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_gold_3.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_silver_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_silver_1.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_silver_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_silver_2.png -------------------------------------------------------------------------------- /Core/resources/icons/medal_silver_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/medal_silver_3.png -------------------------------------------------------------------------------- /Core/resources/icons/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/icons/shield.png -------------------------------------------------------------------------------- /Core/resources/images/ballon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/ballon.png -------------------------------------------------------------------------------- /Core/resources/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/bullet.png -------------------------------------------------------------------------------- /Core/resources/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/clock.png -------------------------------------------------------------------------------- /Core/resources/images/cursor.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/cursor.xpm -------------------------------------------------------------------------------- /Core/resources/images/dossiers/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/dossiers/background.png -------------------------------------------------------------------------------- /Core/resources/images/empty_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/empty_background.jpg -------------------------------------------------------------------------------- /Core/resources/images/game/button_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/button_capture.png -------------------------------------------------------------------------------- /Core/resources/images/game/button_places.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/button_places.png -------------------------------------------------------------------------------- /Core/resources/images/game/button_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/button_quit.png -------------------------------------------------------------------------------- /Core/resources/images/game/button_travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/button_travel.png -------------------------------------------------------------------------------- /Core/resources/images/game/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/clock.png -------------------------------------------------------------------------------- /Core/resources/images/game/clock_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/clock_small.png -------------------------------------------------------------------------------- /Core/resources/images/game/polaroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/polaroid.png -------------------------------------------------------------------------------- /Core/resources/images/game/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/game/tick.png -------------------------------------------------------------------------------- /Core/resources/images/hall_of_fame_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/hall_of_fame_background.png -------------------------------------------------------------------------------- /Core/resources/images/magn_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/magn_glass.png -------------------------------------------------------------------------------- /Core/resources/images/mainwindow_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/mainwindow_bg.png -------------------------------------------------------------------------------- /Core/resources/images/map/airplane-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/airplane-30.png -------------------------------------------------------------------------------- /Core/resources/images/map/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/airplane.png -------------------------------------------------------------------------------- /Core/resources/images/map/flight_target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/flight_target.gif -------------------------------------------------------------------------------- /Core/resources/images/map/flight_target_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/flight_target_over.gif -------------------------------------------------------------------------------- /Core/resources/images/map/mercator-map-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/mercator-map-small.png -------------------------------------------------------------------------------- /Core/resources/images/map/mercator-map-wo-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/mercator-map-wo-legend.png -------------------------------------------------------------------------------- /Core/resources/images/map/mercator-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/map/mercator-map.png -------------------------------------------------------------------------------- /Core/resources/images/menu/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/menu/background.png -------------------------------------------------------------------------------- /Core/resources/images/menu/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/menu/menu_bg.jpg -------------------------------------------------------------------------------- /Core/resources/images/menu/menu_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/menu/menu_note.png -------------------------------------------------------------------------------- /Core/resources/images/menu/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/menu/pipe.png -------------------------------------------------------------------------------- /Core/resources/images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/notebook.png -------------------------------------------------------------------------------- /Core/resources/images/notebook_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/notebook_background.png -------------------------------------------------------------------------------- /Core/resources/images/places/airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/airport.png -------------------------------------------------------------------------------- /Core/resources/images/places/airport_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/airport_character.png -------------------------------------------------------------------------------- /Core/resources/images/places/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/dialog.png -------------------------------------------------------------------------------- /Core/resources/images/places/harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/harbor.png -------------------------------------------------------------------------------- /Core/resources/images/places/harbor_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/harbor_character.png -------------------------------------------------------------------------------- /Core/resources/images/places/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/hotel.png -------------------------------------------------------------------------------- /Core/resources/images/places/hotel_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/hotel_character.png -------------------------------------------------------------------------------- /Core/resources/images/places/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/library.png -------------------------------------------------------------------------------- /Core/resources/images/places/library_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/library_character.png -------------------------------------------------------------------------------- /Core/resources/images/places/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/museum.png -------------------------------------------------------------------------------- /Core/resources/images/places/museum_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/places/museum_character.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/ajax-loader.gif -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame0.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame1.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame10.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame11.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame12.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame2.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame3.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame4.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame5.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame6.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame7.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame8.png -------------------------------------------------------------------------------- /Core/resources/images/sprites/frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/sprites/frame9.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button-over_center (copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button-over_center (copy).png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button-over_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button-over_center.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button-over_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button-over_left.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button-over_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button-over_right.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button_center (copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button_center (copy).png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button_center.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button_left.png -------------------------------------------------------------------------------- /Core/resources/images/widgets/button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/images/widgets/button_right.png -------------------------------------------------------------------------------- /Core/resources/languages/es/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/languages/es/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /Core/resources/languages/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/languages/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /Core/resources/logo/thief_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/logo/thief_128.png -------------------------------------------------------------------------------- /Core/resources/logo/thief_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/logo/thief_256.png -------------------------------------------------------------------------------- /Core/resources/logo/thief_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/logo/thief_32.png -------------------------------------------------------------------------------- /Core/resources/logo/thief_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/logo/thief_48.png -------------------------------------------------------------------------------- /Core/resources/logo/thief_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/logo/thief_64.png -------------------------------------------------------------------------------- /Core/resources/music/detective.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/music/detective.mp3 -------------------------------------------------------------------------------- /Core/resources/music/music.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/music/music.mid -------------------------------------------------------------------------------- /Core/resources/music/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/music/music.ogg -------------------------------------------------------------------------------- /Core/resources/sounds/airplane.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/airplane.wav -------------------------------------------------------------------------------- /Core/resources/sounds/applauses.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/applauses.mp3 -------------------------------------------------------------------------------- /Core/resources/sounds/computer.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/computer.wav -------------------------------------------------------------------------------- /Core/resources/sounds/gunshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/gunshot.wav -------------------------------------------------------------------------------- /Core/resources/sounds/keyboard_click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/keyboard_click.wav -------------------------------------------------------------------------------- /Core/resources/sounds/menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/menu.wav -------------------------------------------------------------------------------- /Core/resources/sounds/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/step.wav -------------------------------------------------------------------------------- /Core/resources/sounds/time.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/time.wav -------------------------------------------------------------------------------- /Core/resources/sounds/weird_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/resources/sounds/weird_loop.wav -------------------------------------------------------------------------------- /Core/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/Main.cpp -------------------------------------------------------------------------------- /Core/src/Version.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define GAME_VERSION "1.0.0" 4 | 5 | -------------------------------------------------------------------------------- /Core/src/Version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/Version.hpp.in -------------------------------------------------------------------------------- /Core/src/entities/Clue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Clue.cpp -------------------------------------------------------------------------------- /Core/src/entities/Clue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Clue.h -------------------------------------------------------------------------------- /Core/src/entities/ClueFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/ClueFactory.cpp -------------------------------------------------------------------------------- /Core/src/entities/ClueFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/ClueFactory.h -------------------------------------------------------------------------------- /Core/src/entities/CountriesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/CountriesManager.cpp -------------------------------------------------------------------------------- /Core/src/entities/CountriesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/CountriesManager.h -------------------------------------------------------------------------------- /Core/src/entities/Country.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Country.cpp -------------------------------------------------------------------------------- /Core/src/entities/Country.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Country.h -------------------------------------------------------------------------------- /Core/src/entities/Criminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Criminal.cpp -------------------------------------------------------------------------------- /Core/src/entities/Criminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Criminal.h -------------------------------------------------------------------------------- /Core/src/entities/CriminalsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/CriminalsManager.cpp -------------------------------------------------------------------------------- /Core/src/entities/CriminalsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/CriminalsManager.h -------------------------------------------------------------------------------- /Core/src/entities/Genre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Genre.h -------------------------------------------------------------------------------- /Core/src/entities/GeoCoordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/GeoCoordinates.h -------------------------------------------------------------------------------- /Core/src/entities/Place.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Place.cpp -------------------------------------------------------------------------------- /Core/src/entities/Place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Place.h -------------------------------------------------------------------------------- /Core/src/entities/PlacesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlacesManager.cpp -------------------------------------------------------------------------------- /Core/src/entities/PlacesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlacesManager.h -------------------------------------------------------------------------------- /Core/src/entities/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Player.cpp -------------------------------------------------------------------------------- /Core/src/entities/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/Player.h -------------------------------------------------------------------------------- /Core/src/entities/PlayerCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayerCase.cpp -------------------------------------------------------------------------------- /Core/src/entities/PlayerCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayerCase.h -------------------------------------------------------------------------------- /Core/src/entities/PlayerCaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayerCaseManager.cpp -------------------------------------------------------------------------------- /Core/src/entities/PlayerCaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayerCaseManager.h -------------------------------------------------------------------------------- /Core/src/entities/PlayersManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayersManager.cpp -------------------------------------------------------------------------------- /Core/src/entities/PlayersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/PlayersManager.h -------------------------------------------------------------------------------- /Core/src/entities/format/CountryDescriptionGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/format/CountryDescriptionGenerator.cpp -------------------------------------------------------------------------------- /Core/src/entities/format/CountryDescriptionGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/format/CountryDescriptionGenerator.h -------------------------------------------------------------------------------- /Core/src/entities/format/GenreFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/format/GenreFormatter.cpp -------------------------------------------------------------------------------- /Core/src/entities/format/GenreFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/entities/format/GenreFormatter.h -------------------------------------------------------------------------------- /Core/src/screens/AssignmentScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/AssignmentScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/AssignmentScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/AssignmentScreen.h -------------------------------------------------------------------------------- /Core/src/screens/ComputerScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/ComputerScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/ComputerScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/ComputerScreen.h -------------------------------------------------------------------------------- /Core/src/screens/CountryDrawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/CountryDrawing.cpp -------------------------------------------------------------------------------- /Core/src/screens/CountryDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/CountryDrawing.h -------------------------------------------------------------------------------- /Core/src/screens/DossierScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/DossierScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/DossierScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/DossierScreen.h -------------------------------------------------------------------------------- /Core/src/screens/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/Game.cpp -------------------------------------------------------------------------------- /Core/src/screens/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/Game.h -------------------------------------------------------------------------------- /Core/src/screens/GameOverScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/GameOverScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/GameOverScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/GameOverScreen.h -------------------------------------------------------------------------------- /Core/src/screens/HallOfFameScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/HallOfFameScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/HallOfFameScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/HallOfFameScreen.h -------------------------------------------------------------------------------- /Core/src/screens/HelpScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/HelpScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/HelpScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/HelpScreen.h -------------------------------------------------------------------------------- /Core/src/screens/IntroScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/IntroScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/IntroScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/IntroScreen.h -------------------------------------------------------------------------------- /Core/src/screens/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/Map.cpp -------------------------------------------------------------------------------- /Core/src/screens/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/Map.h -------------------------------------------------------------------------------- /Core/src/screens/MenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/MenuScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/MenuScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/MenuScreen.h -------------------------------------------------------------------------------- /Core/src/screens/OptionsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/OptionsScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/OptionsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/OptionsScreen.h -------------------------------------------------------------------------------- /Core/src/screens/PlaceSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/PlaceSelector.cpp -------------------------------------------------------------------------------- /Core/src/screens/PlaceSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/PlaceSelector.h -------------------------------------------------------------------------------- /Core/src/screens/ProfileScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/ProfileScreen.cpp -------------------------------------------------------------------------------- /Core/src/screens/ProfileScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/ProfileScreen.h -------------------------------------------------------------------------------- /Core/src/screens/handlers/GameEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/handlers/GameEventHandler.cpp -------------------------------------------------------------------------------- /Core/src/screens/handlers/GameEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/screens/handlers/GameEventHandler.h -------------------------------------------------------------------------------- /Core/src/ui/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/Clock.cpp -------------------------------------------------------------------------------- /Core/src/ui/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/Clock.h -------------------------------------------------------------------------------- /Core/src/ui/widgets/InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/InputBox.cpp -------------------------------------------------------------------------------- /Core/src/ui/widgets/InputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/InputBox.h -------------------------------------------------------------------------------- /Core/src/ui/widgets/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/Menu.cpp -------------------------------------------------------------------------------- /Core/src/ui/widgets/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/Menu.h -------------------------------------------------------------------------------- /Core/src/ui/widgets/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/MenuItem.cpp -------------------------------------------------------------------------------- /Core/src/ui/widgets/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/MenuItem.h -------------------------------------------------------------------------------- /Core/src/ui/widgets/SquareButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/SquareButton.cpp -------------------------------------------------------------------------------- /Core/src/ui/widgets/SquareButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/ui/widgets/SquareButton.h -------------------------------------------------------------------------------- /Core/src/utilities/Configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Configurator.cpp -------------------------------------------------------------------------------- /Core/src/utilities/Configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Configurator.h -------------------------------------------------------------------------------- /Core/src/utilities/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/DateTime.cpp -------------------------------------------------------------------------------- /Core/src/utilities/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/DateTime.h -------------------------------------------------------------------------------- /Core/src/utilities/Translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Translator.cpp -------------------------------------------------------------------------------- /Core/src/utilities/Translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Translator.h -------------------------------------------------------------------------------- /Core/src/utilities/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Updater.cpp -------------------------------------------------------------------------------- /Core/src/utilities/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/Updater.h -------------------------------------------------------------------------------- /Core/src/utilities/fx/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/fx/Sprite.cpp -------------------------------------------------------------------------------- /Core/src/utilities/fx/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Core/src/utilities/fx/Sprite.h -------------------------------------------------------------------------------- /Kangaroo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/.gitignore -------------------------------------------------------------------------------- /Kangaroo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeLists.txt -------------------------------------------------------------------------------- /Kangaroo/CMakeModules/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeModules/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /Kangaroo/CMakeModules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeModules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /Kangaroo/CMakeModules/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeModules/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /Kangaroo/CMakeModules/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeModules/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /Kangaroo/CMakeModules/FindSDL_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/CMakeModules/FindSDL_gfx.cmake -------------------------------------------------------------------------------- /Kangaroo/include/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Area.h -------------------------------------------------------------------------------- /Kangaroo/include/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Color.h -------------------------------------------------------------------------------- /Kangaroo/include/CoreService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/CoreService.h -------------------------------------------------------------------------------- /Kangaroo/include/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Database.h -------------------------------------------------------------------------------- /Kangaroo/include/DialogFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/DialogFactory.h -------------------------------------------------------------------------------- /Kangaroo/include/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Dimension.h -------------------------------------------------------------------------------- /Kangaroo/include/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/EventHandler.h -------------------------------------------------------------------------------- /Kangaroo/include/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/FileUtils.h -------------------------------------------------------------------------------- /Kangaroo/include/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Font.h -------------------------------------------------------------------------------- /Kangaroo/include/FontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/FontManager.h -------------------------------------------------------------------------------- /Kangaroo/include/FontService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/FontService.h -------------------------------------------------------------------------------- /Kangaroo/include/FrameRegulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/FrameRegulator.h -------------------------------------------------------------------------------- /Kangaroo/include/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/GameObject.h -------------------------------------------------------------------------------- /Kangaroo/include/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/HttpClient.h -------------------------------------------------------------------------------- /Kangaroo/include/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MathUtil.h -------------------------------------------------------------------------------- /Kangaroo/include/MediaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MediaManager.h -------------------------------------------------------------------------------- /Kangaroo/include/MediaMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MediaMusic.h -------------------------------------------------------------------------------- /Kangaroo/include/MediaSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MediaSound.h -------------------------------------------------------------------------------- /Kangaroo/include/MixerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MixerService.h -------------------------------------------------------------------------------- /Kangaroo/include/MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/MouseCursor.h -------------------------------------------------------------------------------- /Kangaroo/include/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Point.h -------------------------------------------------------------------------------- /Kangaroo/include/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Properties.h -------------------------------------------------------------------------------- /Kangaroo/include/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Random.h -------------------------------------------------------------------------------- /Kangaroo/include/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Renderer.h -------------------------------------------------------------------------------- /Kangaroo/include/ResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/ResultSet.h -------------------------------------------------------------------------------- /Kangaroo/include/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Scene.h -------------------------------------------------------------------------------- /Kangaroo/include/SensitiveAreas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/SensitiveAreas.h -------------------------------------------------------------------------------- /Kangaroo/include/Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Service.h -------------------------------------------------------------------------------- /Kangaroo/include/Services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Services.h -------------------------------------------------------------------------------- /Kangaroo/include/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/StringUtil.h -------------------------------------------------------------------------------- /Kangaroo/include/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Surface.h -------------------------------------------------------------------------------- /Kangaroo/include/SurfaceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/SurfaceUtil.h -------------------------------------------------------------------------------- /Kangaroo/include/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Text.h -------------------------------------------------------------------------------- /Kangaroo/include/TextUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/TextUtils.h -------------------------------------------------------------------------------- /Kangaroo/include/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Texture.h -------------------------------------------------------------------------------- /Kangaroo/include/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/Window.h -------------------------------------------------------------------------------- /Kangaroo/include/components/AbstractDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/components/AbstractDialog.h -------------------------------------------------------------------------------- /Kangaroo/include/components/ConfirmationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/components/ConfirmationDialog.h -------------------------------------------------------------------------------- /Kangaroo/include/components/InformationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/include/components/InformationDialog.h -------------------------------------------------------------------------------- /Kangaroo/src/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Area.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Color.cpp -------------------------------------------------------------------------------- /Kangaroo/src/CoreService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/CoreService.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Database.cpp -------------------------------------------------------------------------------- /Kangaroo/src/DialogFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/DialogFactory.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Dimension.cpp -------------------------------------------------------------------------------- /Kangaroo/src/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/EventHandler.cpp -------------------------------------------------------------------------------- /Kangaroo/src/FileUtlis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/FileUtlis.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Font.cpp -------------------------------------------------------------------------------- /Kangaroo/src/FontManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/FontManager.cpp -------------------------------------------------------------------------------- /Kangaroo/src/FontService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/FontService.cpp -------------------------------------------------------------------------------- /Kangaroo/src/FrameRegulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/FrameRegulator.cpp -------------------------------------------------------------------------------- /Kangaroo/src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/HttpClient.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MathUtil.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MediaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MediaManager.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MediaMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MediaMusic.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MediaSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MediaSound.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MixerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MixerService.cpp -------------------------------------------------------------------------------- /Kangaroo/src/MouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/MouseCursor.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Point.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Properties.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Random.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Renderer.cpp -------------------------------------------------------------------------------- /Kangaroo/src/ResultSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/ResultSet.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Scene.cpp -------------------------------------------------------------------------------- /Kangaroo/src/SensitiveAreas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/SensitiveAreas.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Services.cpp -------------------------------------------------------------------------------- /Kangaroo/src/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/StringUtil.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Surface.cpp -------------------------------------------------------------------------------- /Kangaroo/src/SurfaceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/SurfaceUtil.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Text.cpp -------------------------------------------------------------------------------- /Kangaroo/src/TextUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/TextUtils.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Texture.cpp -------------------------------------------------------------------------------- /Kangaroo/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/Window.cpp -------------------------------------------------------------------------------- /Kangaroo/src/components/ConfirmationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/components/ConfirmationDialog.cpp -------------------------------------------------------------------------------- /Kangaroo/src/components/InformationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/Kangaroo/src/components/InformationDialog.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ponup/thiefcatcher/HEAD/README.md --------------------------------------------------------------------------------