// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. using System; namespace Atom.Core.Mathematics { public static class MathUtils { /// /// Represents an instance of the class, to generate /// random numerical values. /// public static Random Rnd = new Random(); } }