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

📄 a.java

📁 泡泡龙游戏原代码
💻 JAVA
字号:
// Decompiled by DJ v2.9.9.60 Copyright 2000 Atanas Neshkov  Date: 2003-8-12 2:40:35
// Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
// Decompiler options: packimports(3) 

package com.whkjava.a.a;

import java.io.IOException;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;

public class a
{

    public a()
    {
    }

    public static Image a(String s)
    {
        Image image = null;
        try
        {
            image = Image.createImage(s);
        }
        catch(IOException ioexception)
        {
            ioexception.printStackTrace();
        }
        return image;
    }

    public static void a(Graphics g, Image image, int i, int j)
    {
        g.drawImage(image, i, j, 20);
    }

    public static void a(Graphics g, String s, int i, int j)
    {
        g.drawString(s, i, j, 20);
    }

    public static void a(Graphics g, String s, int i, int j, int k, int l, int i1, int j1, 
            int k1, int l1)
    {
        g.setColor(k, l, i1);
        a(g, s, i - 1, j - 1);
        a(g, s, i, j - 1);
        a(g, s, i + 1, j - 1);
        a(g, s, i - 1, j);
        a(g, s, i + 1, j);
        a(g, s, i - 1, j + 1);
        a(g, s, i, j + 1);
        a(g, s, i + 1, j + 1);
        g.setColor(j1, k1, l1);
        a(g, s, i, j);
    }
}

⌨️ 快捷键说明

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