14 lines
225 B
Ucode
14 lines
225 B
Ucode
class NetworkTest extends Mutator
|
|
config(TestMut);
|
|
|
|
function PostBeginPlay()
|
|
{
|
|
local TestTcp tcp;
|
|
tcp = Spawn(class'TestTcp');
|
|
tcp.Initialize();
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
bAlwaysRelevant = true
|
|
} |