public LandMarkBottom(GamePanel tempgp, LandMarkTop templmt, LandMark templm) {

    gp = tempgp;
    lmt = templmt;

    lm = templm;

    setPreferredSize(new Dimension(500, 75));
    setBackground(Color.BLACK);
    setLayout(null);

    btnParty.setBounds(0, 0, 100, 75);
    btnParty.addActionListener(new HandleBtnParty());
    add(btnParty);

    btnSupplies.setBounds(100, 0, 100, 75);
    btnSupplies.addActionListener(new HandleBtnSupplies());
    btnSupplies.setFont(new Font("Lucida Sans Typewriter", Font.PLAIN, 14));
    add(btnSupplies);

    btnStore.setBounds(200, 0, 100, 75);
    btnStore.addActionListener(new HandleBtnStore());
    add(btnStore);

    btnLeave.setBounds(400, 0, 100, 75);
    btnLeave.addActionListener(new HandleBtnLeave());
    add(btnLeave);
  }