37 lines
842 B
C#
37 lines
842 B
C#
public class NetPackageSentHiresRebirth : NetPackage
|
|
{
|
|
public NetPackageSentHiresRebirth Setup(
|
|
)
|
|
{
|
|
return this;
|
|
}
|
|
|
|
public override void read(PooledBinaryReader _br)
|
|
{
|
|
}
|
|
|
|
public override void write(PooledBinaryWriter _bw)
|
|
{
|
|
base.write(_bw);
|
|
}
|
|
|
|
public override int GetLength()
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
public override void ProcessPackage(World _world, GameManager _callbacks)
|
|
{
|
|
//Log.Out("NetPackageSentHiresRebirth-ProcessPackage START");
|
|
if (_world == null)
|
|
{
|
|
//Log.Out("NetPackageSentHiresRebirth-ProcessPackage 1");
|
|
return;
|
|
}
|
|
|
|
RebirthManager.loadedHires = true;
|
|
//Log.Out("NetPackageSentHiresRebirth-ProcessPackage HIRES HAVE BEEN LOADED");
|
|
}
|
|
}
|
|
|