mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
* Convert to LF? * Modify gitattributes * Force LF * Git --renormalize * Update .gitattributes to enforce eol=lf * Redo CRLF -> LF on remaining files
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
import quake2 from './quake2.js'
|
|
|
|
export default class quake1 extends quake2 {
|
|
constructor () {
|
|
super()
|
|
this.responseHeader = 'n'
|
|
this.isQuake1 = true
|
|
}
|
|
}
|