pos_t

Last-modified: 2007-10-22 (月) 22:54:44

機能

 さまざまなメソッドの補助構造体。

変数

変数名目的
intx座標X格納
inty座標Y格納

メソッド

 なし

コンストラクタ

 なし

デストラクタ

 なし

グローバル宣言

 なし

構造体型と同名の関数

 pos_t pos_t(int nX, int nY)

続きを読む
{
	pos_t pos;
	pos.x = nX;
	pos.y = nY;
	return pos;
}