Большое переименование и рефакторинг углов / Big renaming and refactoring of angles

This commit is contained in:
Andrey Pokidov 2024-11-19 00:44:50 +07:00
parent 1afbf8c1d6
commit 72d06a23b2
38 changed files with 3819 additions and 3757 deletions

19
BGCTest/F32Vector2Test.cs Normal file
View file

@ -0,0 +1,19 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using BGC;
namespace BGCTest
{
[TestClass]
public class F32Vector2Test
{
[TestMethod]
public void TestInitialization()
{
F32Vector2 vector = new F32Vector2(1.0f, 2.0f);
}
}
}