package com.newlecture.game;


import java.util.Scanner;


public class Omok 

{

private int x;

private int y;

private int type;

public void input()

{

System.out.print("(x,y)를 입력해주세요");

Scanner scan = new Scanner(System.in);

this.x = scan.nextInt();

this.y = scan.nextInt();

}

public int getX()

{

return x;

}

public int getY()

{

return y;

}

}



+ Recent posts