File tree 2 files changed +43
-3
lines changed
addons/source-python/packages/source-python
2 files changed +43
-3
lines changed Original file line number Diff line number Diff line change
1
+ # ../net_channel.py
2
+
3
+ """Provides access to the net channel interfaces."""
4
+
5
+ # ============================================================================
6
+ # >> IMPORTS
7
+ # ============================================================================
8
+ # Python
9
+ from enum import IntEnum
10
+
11
+
12
+ # =============================================================================
13
+ # >> FORWARD IMPORTS
14
+ # =============================================================================
15
+ # Source.Python Imports
16
+ # Effects
17
+ from _net_channel import FLOW_IN_OUT
18
+ from _net_channel import FLOW_INCOMING
19
+ from _net_channel import FLOW_OUTGOING
20
+ from _net_channel import NetChannel
21
+ from _net_channel import NetChannelHandler
22
+ from _net_channel import NetChannelInfo
23
+ from _net_channel import NetMessage
24
+
25
+
26
+ # =============================================================================
27
+ # >> ALL DECLARATION
28
+ # =============================================================================
29
+ __all__ = ('NetChannel' ,
30
+ 'NetChannelHandler' ,
31
+ 'NetChannelInfo' ,
32
+ 'NetMessage' ,
33
+ )
34
+
35
+
36
+ # =============================================================================
37
+ # >> CLASSES
38
+ # =============================================================================
39
+ class NetFlow (IntEnum ):
40
+ FLOW_IN_OUT = FLOW_IN_OUT
41
+ FLOW_INCOMING = FLOW_INCOMING
42
+ FLOW_OUTGOING = FLOW_OUTGOING
Original file line number Diff line number Diff line change 15
15
# =============================================================================
16
16
# Source.Python Imports
17
17
# Players
18
- from _players import NetChannelInfo
19
18
from _players import PlayerGenerator
20
19
from _players import PlayerInfo
21
20
22
21
23
22
# =============================================================================
24
23
# >> ALL DECLARATION
25
24
# =============================================================================
26
- __all__ = ('NetChannelInfo' ,
27
- 'PlayerGenerator' ,
25
+ __all__ = ('PlayerGenerator' ,
28
26
'PlayerInfo' ,
29
27
)
30
28
You can’t perform that action at this time.
0 commit comments