proto/Player.hh
author saiam
Wed, 05 Nov 2008 20:58:04 +0000
changeset 10 78d81d5c2d61
parent 1 085631252347
permissions -rw-r--r--
Fixed some CMakeLists :)
#ifndef PLAYER_HH
#define PLAYER_HH

#include "coor.hh"

class Player {
public:
	Player()
		: xy(140.0, 140.0), xy2(140.0, 140.0) {

	}

	coor<double> xy;
	coor<double> xy2;
};

#endif