Search:

Type: Posts; User: D4rk_H34rt

Search: Search took 0.09 seconds.

  1. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Re: Boulderdash

    The objects need to be seen/created. the player, diamonds, rocks etc that boulderdash is supposed to have. I actulay didn't create this I just need any working source code I could have for...
  2. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Re: Boulderdash

    Yes. it shows a blank screen only. what do I need to add to make this boulderdash game work?
  3. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Re: Boulderdash

    import javax.swing.*;
    import java.awt.*;
    // This class will allow us to define features of the different types of blocks in the game

    public class Block {

    int x = 0;
    int y = 0;
    boolean...
  4. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Re: Boulderdash

    import javax.swing.*;
    import java.awt.*;
    // This class will allow us to define features of the different types of blocks in the game

    public class Block {

    int x = 0;
    int y = 0;
    boolean...
  5. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Re: Boulderdash

    The game runs but it only a black screen. how can I fix it?



    class Amoeba extends Monster {

    public Amoeba(int x, int y, Sprite.Directions d) {
    super(x, y, d);
    }
  6. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Boulderdash

    Hello guys I was wondering whats wrong with this code here https://github.com/cuervoslaugh/boulder_dash because when I run it, it just gives a black screen!
  7. Thread: Boulderdash

    by D4rk_H34rt
    Replies
    15
    Views
    2,181

    Boulderdash

    I was hoping anyone would help me out with this assignment I have for exams. its for a game named Boulder dash. This is what I need
    •Set up graphical user interface
    •Represent diamonds, dirt, empty...
Results 1 to 7 of 10