12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
/*!
|
|
@file pushToTalkPI.js
|
|
@brief Contains PI for Push to Talk action
|
|
@author Valentin Reinbold
|
|
@copyright (c) 2021, Corsair Memory, Inc. All Rights Reserved.
|
|
*/
|
|
|
|
function PushToTalkTogglePI(inContext, inLanguage) {
|
|
// Inherit from PI
|
|
PI.call(this, inContext, inLanguage);
|
|
}
|