17 lines
246 B
JavaScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00

class CSpeak
{
constructor(nSpeakerID, strText, strName, emPos)
{
this.nSpeakerID = nSpeakerID;
this.strText = strText;
this.strName = strName;
this.emPos = emPos;
}
};
module.exports = CSpeak;