File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
NetworkingManagerComponents Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 78
78
</Reference >
79
79
</ItemGroup >
80
80
<ItemGroup >
81
- <Compile Include =" Data\BigInteger.cs" />
82
81
<Compile Include =" Data\Channel.cs" />
83
82
<Compile Include =" Data\AttributeMessageMode.cs" />
84
83
<Compile Include =" Data\UnsignedIntegerArrayExtensions.cs" />
109
108
<Compile Include =" MonoBehaviours\Prototyping\NetworkedAnimator.cs" />
110
109
<Compile Include =" MonoBehaviours\Prototyping\NetworkedNavMeshAgent.cs" />
111
110
<Compile Include =" NetworkingManagerComponents\Binary\Arithmetic.cs" />
111
+ <Compile Include =" NetworkingManagerComponents\Binary\BigInteger.cs" />
112
112
<Compile Include =" NetworkingManagerComponents\Binary\BitReader.cs" />
113
113
<Compile Include =" NetworkingManagerComponents\Binary\BitWriter.cs" />
114
114
<Compile Include =" NetworkingManagerComponents\Binary\BitStream.cs" />
Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
BigInteger Class Version 1.03
3
3
4
4
Copyright (c) 2002 Chew Keong TAN All rights reserved.
@@ -25,7 +25,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
25
25
using System ;
26
26
using System . Security . Cryptography ;
27
27
28
- namespace MLAPI . Data
28
+ namespace MLAPI . Internal
29
29
{
30
30
/// <summary>
31
31
/// This is a BigInteger class. Holds integer that is more than 64-bit (long).
Original file line number Diff line number Diff line change 1
1
#if ! DISABLE_CRYPTOGRAPHY
2
-
3
- using MLAPI . Data ;
4
2
using System ;
5
3
using System . Security . Cryptography ;
6
4
using System . Text ;
5
+ using MLAPI . Internal ;
7
6
using UnityEngine ;
8
7
9
8
namespace MLAPI . Cryptography
Original file line number Diff line number Diff line change 1
1
#if ! DISABLE_CRYPTOGRAPHY
2
-
3
2
using MLAPI . Data ;
4
3
using System ;
5
4
using System . Collections . Generic ;
5
+ using MLAPI . Internal ;
6
6
7
7
namespace MLAPI . Cryptography
8
8
{
You can’t perform that action at this time.
0 commit comments