summaryrefslogtreecommitdiff
path: root/doc/lua_api.txt
diff options
context:
space:
mode:
authorparamat <paramat@users.noreply.github.com>2018-03-17 22:05:21 +0000
committerparamat <mat.gregory@virginmedia.com>2018-03-21 04:31:46 +0000
commitcd6bcef6d9f387d43fa8fa34b93722ab0b8ba895 (patch)
tree825ab05c5fb309556d9d5749c86ea837e566095a /doc/lua_api.txt
parent15bafa60f3ca6e932b9c9bc8af1678eb300edc75 (diff)
downloadminetest-cd6bcef6d9f387d43fa8fa34b93722ab0b8ba895.tar.gz
minetest-cd6bcef6d9f387d43fa8fa34b93722ab0b8ba895.tar.bz2
minetest-cd6bcef6d9f387d43fa8fa34b93722ab0b8ba895.zip
Minetest ASCII art: Move from actionstream to rawstream
Diffstat (limited to 'doc/lua_api.txt')
0 files changed, 0 insertions, 0 deletions
l 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. */ #ifndef LOCALPLAYER_HEADER #define LOCALPLAYER_HEADER #include "player.h" struct PlayerControl { PlayerControl() { up = false; down = false; left = false; right = false; jump = false; aux1 = false; sneak = false; pitch = 0; yaw = 0; } PlayerControl( bool a_up, bool a_down, bool a_left, bool a_right, bool a_jump, bool a_aux1, bool a_sneak, float a_pitch, float a_yaw ) { up = a_up; down = a_down; left = a_left; right = a_right; jump = a_jump; aux1 = a_aux1;