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
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
|
|
}
|
|
}
|