コード例 #1
0
ファイル: Team.java プロジェクト: barryp/q2java
	/**
	* Returns the origin of the base of this team.
	* This returns null if the base has no flag !!!
	**/
	public Point3f getBaseOrigin()
	{
		if ( fFlag != null )
			return fFlag.getBaseOrigin();
		else
			return null;
	}