Skip to content

Commit 7c4e054

Browse files
committed
Updated python files for the new net_channel module
1 parent 7081f4e commit 7c4e054

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

addons/source-python/packages/source-python/players/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,14 @@
1515
# =============================================================================
1616
# Source.Python Imports
1717
# Players
18-
from _players import NetChannelInfo
1918
from _players import PlayerGenerator
2019
from _players import PlayerInfo
2120

2221

2322
# =============================================================================
2423
# >> ALL DECLARATION
2524
# =============================================================================
26-
__all__ = ('NetChannelInfo',
27-
'PlayerGenerator',
25+
__all__ = ('PlayerGenerator',
2826
'PlayerInfo',
2927
)
3028

0 commit comments

Comments
 (0)