17 lines
223 B
C#
17 lines
223 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using NUnit.Framework;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public class Vector : MonoBehaviour
|
||
|
{
|
||
|
[Test]
|
||
|
public void CalculateSqrMagnitude()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|