aboutsummaryrefslogtreecommitdiff
path: root/po/ja
diff options
context:
space:
mode:
authorUko Koknevics <TheZeus121@gmail.com>2020-06-02 13:06:02 +0000
committersfan5 <sfan5@live.de>2020-06-13 23:13:44 +0200
commitd7106c4d5fe72ef25a38b3a3d6f087ec2b018a5e (patch)
treeea237ff0507c3637d7147e85ca69a747994e9553 /po/ja
parentd69d6fe0039c171a01789d47c30eb7779e41138b (diff)
downloadminetest-d7106c4d5fe72ef25a38b3a3d6f087ec2b018a5e.tar.gz
minetest-d7106c4d5fe72ef25a38b3a3d6f087ec2b018a5e.tar.bz2
minetest-d7106c4d5fe72ef25a38b3a3d6f087ec2b018a5e.zip
Translated using Weblate (Latvian)
Currently translated at 31.8% (410 of 1288 strings)
Diffstat (limited to 'po/ja')
0 files changed, 0 insertions, 0 deletions
a id='n110' href='#n110'>110 111 112 113 114 115 116 117
/*
Minetest
Copyright (C) 2018 rubenwardy <rw@rubenwardy.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include <fstream>
#include "content/content.h"
#include "content/subgames.h"
#include "content/mods.h"
#include "filesys.h"
#include "settings.h"

enum ContentType
{
	ECT_UNKNOWN,
	ECT_MOD,
	ECT_MODPACK,
	ECT_GAME,
	ECT_TXP
};

ContentType getContentType(const ContentSpec &spec)
{