mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01:00
cee42e7a88
* Convert to LF? * Modify gitattributes * Force LF * Git --renormalize * Update .gitattributes to enforce eol=lf * Redo CRLF -> LF on remaining files
10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
import quake2 from './quake2.js'
|
|
|
|
export default class quake1 extends quake2 {
|
|
constructor () {
|
|
super()
|
|
this.responseHeader = 'n'
|
|
this.isQuake1 = true
|
|
}
|
|
}
|