Skip to content

Commit

Permalink
Some initial translation support work
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkwouter committed Jul 15, 2024
1 parent 7fae85c commit e6dfa85
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pkg_search_module(SDL2_IMAGE REQUIRED SDL2_image)
pkg_search_module(SDL2_MIXER REQUIRED SDL2_mixer)
pkg_search_module(SDL2_TTF REQUIRED SDL2_ttf)
pkg_search_module(JSONCPP REQUIRED jsoncpp)
pkg_search_module(TINYGETTEXT REQUIRED tinygettext)


# Link libraries
Expand Down
9 changes: 9 additions & 0 deletions src/TranslationManager.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include "TranslationManager.hpp"

TranslationManager::TranslationManager() {

}

TranslationManager::~TranslationManager() {

}
14 changes: 14 additions & 0 deletions src/TranslationManager.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#ifndef TRANSLATIONMANAGER_H
#define TRANSLATIONMANAGER_H

#include "tinygettext/tinygettext.hpp"

class TranslationManager {
private:

public:
TranslationManager();
~TranslationManager();
};

#endif // TRANSLATIONMANAGER_H

0 comments on commit e6dfa85

Please sign in to comment.