Core/Guild: Implemented guild master dethrone

This commit is contained in:
hondacrx
2018-04-22 16:42:26 -04:00
parent 2c3a0bcb02
commit c2b882eb45
15 changed files with 80 additions and 41 deletions
+3 -3
View File
@@ -693,7 +693,7 @@ namespace Framework.GameMath
/// <returns>A new <see cref="Matrix3"/> instance containing the sum.</returns>
public static Matrix3 operator +(Matrix3 left, Matrix3 right)
{
return Matrix3.Add(left, right); ;
return Matrix3.Add(left, right);
}
/// <summary>
/// Adds a matrix and a scalar.
@@ -723,7 +723,7 @@ namespace Framework.GameMath
/// <returns>A new <see cref="Matrix3"/> instance containing the difference.</returns>
public static Matrix3 operator -(Matrix3 left, Matrix3 right)
{
return Matrix3.Subtract(left, right); ;
return Matrix3.Subtract(left, right);
}
/// <summary>
/// Subtracts a scalar from a matrix.
@@ -743,7 +743,7 @@ namespace Framework.GameMath
/// <returns>A new <see cref="Matrix3"/> instance containing the result.</returns>
public static Matrix3 operator *(Matrix3 left, Matrix3 right)
{
return Matrix3.Multiply(left, right); ;
return Matrix3.Multiply(left, right);
}
/// <summary>
/// Transforms a given vector by a matrix.