view src/GlobalEyePoint.h @ 10:5727d511a13a

add src in Martial Project Xcode.
author tokumoritaichirou@nw0743.st.ie.u-ryukyu.ac.jp
date Wed, 03 Feb 2010 03:39:04 +0900
parents
children
line wrap: on
line source

/*
 *  GlobalEyePoint.h
 *  Martial
 *
 *  Created by ryoma on 10/01/28.
 *  Copyright 2010 琉球大学. All rights reserved.
 *
 */

#ifndef _GLOBAL_EYE_POINT_H_
#define _GLOBAL_EYE_POINT_H_

#include "EyePoint.h"

class GlobalEyePoint : public EyePoint {
	protected:
		std::list<MovableObject*> targets;
	public:
		GlobalEyePoint(char* name = "GlobalEyePoint");
		void setTarget(MovableObject* _target);
		void frame();		
		void removeTarget(MovableObject* _target);
};

#endif