1: //======================================================================================== 2: // DummyPad.java 3: // en:Dummy pad 4: // ja:ダミーパッド 5: // Copyright (C) 2003-2023 Makoto Kamada 6: // 7: // This file is part of the XEiJ (X68000 Emulator in Java). 8: // You can use, modify and redistribute the XEiJ if the conditions are met. 9: // Read the XEiJ License for more details. 10: // https://stdkmd.net/xeij/ 11: //======================================================================================== 12: 13: package xeij; 14: 15: //class DummyPad 16: // ダミーパッド 17: // ジョイスティックポートに何も繋がっていない 18: public class DummyPad extends Joystick { 19: 20: //new DummyPad () 21: // コンストラクタ 22: public DummyPad () { 23: number = 0; 24: id = ""; 25: nameEn = "None"; 26: nameJa = "なし"; 27: } 28: 29: } //class DummyPad