home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 615 b | 26 lines |
- // CreditPanel.java
- // 28.02.96
- //
- // the credits screen
-
- package cybcerone.credit;
-
- import cybcerone.utils.Appletlike;
- import cybcerone.utils.SuperPanel;
-
- /**
- * An image of the people who worked on this project.
- */
- public class CreditPanel extends SuperPanel {
- public static final String id = "credit";
- public static final String imagePath = "informations/";
-
- private static final String statusText = "Brought to you by...";
- private static final String bgFile = imagePath + "fond_credit.gif";
-
- public CreditPanel (Appletlike app) {
- super (id, statusText, app);
- setBackground (bgFile, 3);
- }
- }
-