17 lines
246 B
JavaScript
17 lines
246 B
JavaScript
|
|
class CSpeak
|
|
{
|
|
constructor(nSpeakerID, strText, strName, emPos)
|
|
{
|
|
this.nSpeakerID = nSpeakerID;
|
|
this.strText = strText;
|
|
this.strName = strName;
|
|
this.emPos = emPos;
|
|
}
|
|
};
|
|
|
|
|
|
|
|
module.exports = CSpeak;
|
|
|