proto/Player.hh
author saiam
Wed, 05 Nov 2008 20:55:09 +0000
changeset 9 7ab1f683e4fb
parent 1 085631252347
permissions -rw-r--r--
New versions
#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