| 5 | import Stats from './Stats'; |
| 6 | import { BaseHooks } from './hooks/BaseHooks'; |
| 7 | interface StatsParams { |
| 8 | show?: boolean; |
| 9 | style?: { |
| 10 | width: number; |
| 11 | height: number; |
| 12 | x: number; |
| 13 | y: number; |
| 14 | }; |
| 15 | } |
| 16 | |
| 17 | export default class StatsSystem extends System { |
| 18 | static systemName = 'Stats'; |
nothing calls this directly
no outgoing calls
no test coverage detected