aboutsummaryrefslogtreecommitdiff
path: root/clientmods/preview/examples
diff options
context:
space:
mode:
authorEmojigit <55009343+Emojigit@users.noreply.github.com>2021-03-30 01:58:39 +0800
committerGitHub <noreply@github.com>2021-03-29 19:58:39 +0200
commitfde2785fe363c55e8acfd17af71375a231df41c1 (patch)
treec8adbd803d020c098a09f1916c242319f0aca37f /clientmods/preview/examples
parent7ad8ca62dcd0532e6b2e444e84ca6a5b5b5d8e95 (diff)
downloadminetest-fde2785fe363c55e8acfd17af71375a231df41c1.tar.gz
minetest-fde2785fe363c55e8acfd17af71375a231df41c1.tar.bz2
minetest-fde2785fe363c55e8acfd17af71375a231df41c1.zip
Update language choices in settingtypes.txt (#11124)
Diffstat (limited to 'clientmods/preview/examples')
0 files changed, 0 insertions, 0 deletions
at 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 "directiontables.h" const v3s16 g_6dirs[6] = { // +right, +top, +back v3s16( 0, 0, 1), // back v3s16( 0, 1, 0), // top v3s16( 1, 0, 0), // right v3s16( 0, 0,-1), // front v3s16( 0,-1, 0), // bottom v3s16(-1, 0, 0) // left }; const v3s16 g_26dirs[26] = { // +right, +top, +back v3s16( 0, 0, 1), // back v3s16( 0, 1, 0), // top v3s16( 1, 0, 0), // right v3s16( 0, 0,-1), // front v3s16( 0,-1, 0), // bottom v3s16(-1, 0, 0), // left // 6 v3s16(-1, 1, 0), // top left v3s16( 1, 1, 0), // top right v3s16( 0, 1, 1), // top back v3s16( 0, 1,-1), // top front