📄 scoretransmitter.java
字号:
// Source file: ScoreTransmitter.java
package com.sonyericsson.erix;
/**
* This interface defines the necessary methods for sending scores
* to a high score server.
*/
public interface ScoreTransmitter {
/**
* This method will send the high scores to the High Scores Server.
* @param arrNames Array of High Score Names.
* @param arrScores Array of High Scores.
* @return Returns if the function was completed successfully or not.
*/
public int sendScores();
/**
* This method indicates that this object will no longer be used.
*/
public void cleanUp();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -