mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed default ctor issues
This commit is contained in:
parent
7b22b37822
commit
6ba8bdc14c
3 changed files with 16 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -226,6 +226,11 @@ namespace System.Globalization
|
|||
return (temp);
|
||||
}
|
||||
|
||||
private this()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public this(String name) : this(name, true)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -93,6 +93,11 @@ namespace System.Threading
|
|||
}
|
||||
}
|
||||
|
||||
private this()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public this(ThreadStart start)
|
||||
{
|
||||
if (start == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue