aboutsummaryrefslogtreecommitdiff
path: root/src/jsoncpp/json/jsoncpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jsoncpp/json/jsoncpp.cpp')
0 files changed, 0 insertions, 0 deletions
r 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" class LocalPlayer : public Player { public: LocalPlayer(IGameDef *gamedef); virtual ~LocalPlayer(); bool isLocal() const { return true; } bool isAttached; v3f overridePosition; void move(f32 dtime, Map &map, f32 pos_max_d, core::list<CollisionInfo> *collision_info); void move(f32 dtime, Map &map, f32 pos_max_d); void applyControl(float dtime); v3s16 getStandingNodePos();