Created
December 4, 2012 14:32
-
-
Save gongo/4204513 to your computer and use it in GitHub Desktop.
こういうコード書いててだいぶつらい
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Ring extends HBox { | |
/** | |
* リングを見守る監視カメラ | |
*/ | |
private MuscleSensor sensor = MuscleSensor.instance(); | |
/** | |
* 選手入場口 | |
*/ | |
private Entrance entrance = Entrance.instance(); | |
/** | |
* スライド | |
*/ | |
private OpeningSlide opening = new OpeningSlide(this); | |
private MainSlide mainScreen = new MainSlide(this); | |
/** | |
* 選手監視 | |
*/ | |
private MuscleRadar radar; | |
/** | |
* リングに立てるのはただ一人 | |
*/ | |
private Speaker speaker = null; | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment