UNPKG
@geheimgang188/fmod-service-api
Version:
latest (3.0.0)
3.0.0
2.15.1
2.15.0
2.14.0
2.13.0
2.12.0
2.11.0
2.10.2
2.10.1
2.10.0
2.9.1
2.9.0
2.8.0
2.7.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.2.0
1.1.0
1.0.1
1.0.0
0.1.0
FMOD service API
github.com/Granjow/fmod-service-api
Granjow/fmod-service-api
@geheimgang188/fmod-service-api
/
src
/
api-generator
/
templates
/
param-continuous.template.ts
13 lines
(9 loc)
•
264 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
ContinuousParameter
}
from
'../../index'
;
declare
const
DEFAULT_VALUE
:
number
;
// begin-template
export
class
CLASSNAME
extends
ContinuousParameter
{
constructor
(
) {
super
(
'PARAM_NAME'
,
'EVENT_ID'
,
DEFAULT_VALUE
); } }
// end-template