mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 00:38:31 +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
199 B
JavaScript
10 lines
199 B
JavaScript
import samp from './samp.js'
|
|
|
|
export default class vcmp extends samp {
|
|
constructor () {
|
|
super()
|
|
this.magicHeader = 'VCMP'
|
|
this.responseMagicHeader = 'MP04'
|
|
this.isVcmp = true
|
|
}
|
|
}
|