⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scoretransmitter.java

📁 J2ME的游戏原代码!希望能帮助有需要帮助的师兄弟们!
💻 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 + -