Skip to content

Commit

Permalink
[Physics] Remove unused enum and previous namespace import for inlining
Browse files Browse the repository at this point in the history
  • Loading branch information
Eideren committed Apr 18, 2019
1 parent e975e1f commit 751b6fc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion sources/core/Xenko.Core.Mathematics/Matrix.cs
Expand Up @@ -32,7 +32,6 @@
using System;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;

namespace Xenko.Core.Mathematics
{
Expand Down
1 change: 0 additions & 1 deletion sources/core/Xenko.Core.Mathematics/Quaternion.cs
Expand Up @@ -28,7 +28,6 @@
*/
using System;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

namespace Xenko.Core.Mathematics
Expand Down
1 change: 0 additions & 1 deletion sources/core/Xenko.Core.Mathematics/Vector3.cs
Expand Up @@ -27,7 +27,6 @@
* THE SOFTWARE.
*/
using System;
using System.ComponentModel;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
Expand Down
10 changes: 0 additions & 10 deletions sources/engine/Xenko.Physics/Shapes/HeightfieldColliderShape.cs
Expand Up @@ -144,16 +144,6 @@ public override void Dispose()
FloatArray = null;
}

private enum BulletPhyScalarType
{
PhyFloat = BulletSharp.PhyScalarType.Single,
PhyDouble = BulletSharp.PhyScalarType.Double,
PhyInteger = BulletSharp.PhyScalarType.Int32,
PhyShort = BulletSharp.PhyScalarType.Int16,
PhyFixedpoint88 = BulletSharp.PhyScalarType.FixedPoint88,
PhyUchar = BulletSharp.PhyScalarType.Byte,
}

public class HeightfieldDebugPrimitive : IDebugPrimitive
{
private static readonly int MaxTileWidth = 64;
Expand Down

0 comments on commit 751b6fc

Please sign in to comment.