proto/Player.hh
author terom
Fri, 07 Nov 2008 21:08:55 +0000
changeset 18 5563905cc9aa
parent 1 085631252347
permissions -rw-r--r--
remove unused plan xhtml templates
#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