bluetooth.java

来自「蓝牙技术 本游戏来源于网络」· Java 代码 · 共 64 行

JAVA
64
字号
//	Bluetooth
//
//	Based on code provided by nokia with almost everything ripped out so
//	it will compile without any probs on the WTK
//


class BlueTooth
{
	public static boolean ConnectCancelled = false;
    public static boolean gameFound;

	BlueTooth()
	{
	}

	public static boolean isConnected()
	{
		return true;
	}

	public int retrieve()
	{
		int inp = 0;
		return inp;
	}

	public static void send(int c)
	{
	}

	public static void resend()
	{
	}

	public void startReceive()
	{
	}

	public void hostGame()
	{
	}

	public void joinGame()
	{
	}

	private static void initGame()
	{
	}

	public void interuptServer(boolean bHost)
	{
	}



    public synchronized void close()
    {
    }


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?