player.h

来自「robocup3d源化码 Nexus3D.tar.gz」· C头文件 代码 · 共 32 行

H
32
字号
/*Copyright (C) 2005 Ferdowsi University*/#ifndef PLAYER_H#define PLAYER_H#include "objects.h"class Player : public MobileObject{	private:	public :		Player();		float dist2ball;		Vector3f home_pos;		float move_radius;		void Update(Vector3f, float);		void Update();};class MySelf : public Player{	private:	public :		bool IsGoalie;		MySelf();		void Update(Vector3f, float); /*dist : my distance to ball*/};#endif // PLAYER_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?