proto/Player.hh
author saiam
Fri, 07 Nov 2008 19:58:03 +0000
changeset 17 9eaf15ab8267
parent 1 085631252347
permissions -rw-r--r--
Lollespolles, ne oli sit t??ll?
#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