linting
removed some dead code and fixed a few bugs i introduced
This commit is contained in:
@@ -37,36 +37,12 @@ namespace _2DGAMELIB
|
||||
}
|
||||
}
|
||||
|
||||
public Vector2D(int value)
|
||||
{
|
||||
X = value;
|
||||
Y = value;
|
||||
}
|
||||
|
||||
public Vector2D(float value)
|
||||
{
|
||||
X = value;
|
||||
Y = value;
|
||||
}
|
||||
|
||||
public Vector2D(double value)
|
||||
{
|
||||
X = value;
|
||||
Y = value;
|
||||
}
|
||||
|
||||
public Vector2D(int x, int y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
|
||||
public Vector2D(float x, float y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
|
||||
public Vector2D(double x, double y)
|
||||
{
|
||||
X = x;
|
||||
|
||||
Reference in New Issue
Block a user