mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-07 08:09:13 +08:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
export class GamepadInputSource {
|
|
support: boolean;
|
|
|
|
constructor () {
|
|
this.support = false;
|
|
}
|
|
}
|