7 lines
213 B
C#
7 lines
213 B
C#
|
|
using Microsoft.Xna.Framework;
|
||
|
|
|
||
|
|
namespace FNAF_Clone.GUI;
|
||
|
|
|
||
|
|
public static class PointExtensions {
|
||
|
|
public static Point MultiplyByScalar(this Point point, int scalar) => new(point.X * scalar, point.Y * scalar);
|
||
|
|
}
|