1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed default ctor issues

This commit is contained in:
Brian Fiete 2020-01-25 07:03:14 -08:00
parent 7b22b37822
commit 6ba8bdc14c
3 changed files with 16 additions and 1 deletions

View file

@ -10,7 +10,12 @@ namespace Beefy.geom
public float mZ;
public float mW;
public static readonly Quaternion Identity = Quaternion(0, 0, 0, 1);
public this()
{
this = default;
}
public this(float x, float y, float z, float w)
{
mX = x;

View file

@ -226,6 +226,11 @@ namespace System.Globalization
return (temp);
}
private this()
{
}
public this(String name) : this(name, true)
{
}

View file

@ -93,6 +93,11 @@ namespace System.Threading
}
}
private this()
{
}
public this(ThreadStart start)
{
if (start == null)