[go: up one dir, main page]

Menu

[r1018]: / trunk / t_channel.bmx  Maximize  Restore  History

Download this file

36 lines (32 with data), 849 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
SuperStrict
Global channel:t_channel
Type t_channel
Field intro:TChannel
Field crowd:TChannel
Field bounce:TChannel
Field kick:TChannel
Field post:TChannel
Field net:TChannel
Field hold:TChannel
Field deflect:TChannel
Field whistle:TChannel
Field missgoal:TChannel
Field homegoal:TChannel
Field chant:TChannel
Field endgame:TChannel
Method New()
Self.intro = AllocChannel()
Self.crowd = AllocChannel()
Self.bounce = AllocChannel()
Self.kick = AllocChannel()
Self.post = AllocChannel()
Self.net = AllocChannel()
Self.hold = AllocChannel()
Self.deflect = AllocChannel()
Self.whistle = AllocChannel()
Self.missgoal = AllocChannel()
Self.homegoal = AllocChannel()
Self.chant = AllocChannel()
Self.endgame = AllocChannel()
End Method
End Type