Replaced MailAddress by Vector3

This commit is contained in:
Matthias Heil
2026-01-19 14:16:48 +01:00
parent 7a7565c384
commit b5a402ded1
18 changed files with 85 additions and 80 deletions

View File

@@ -0,0 +1,6 @@
using System.Numerics;
var vector3 = new Vector3(1,2,3);
var quaternion = new Quaternion(1,2,3,4);
return;

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,3 @@
<Solution>
<Project Path="Test.csproj" />
</Solution>