//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// using System; namespace bs.Editor { /** @addtogroup Window * @{ */ /// /// Can be placed on or class to provide a default size for the /// window when it is first opened. /// [AttributeUsage(AttributeTargets.Class)] public sealed class DefaultSize : Attribute { #pragma warning disable 0414 private int width = 400; private int height = 400; #pragma warning restore 0414 public DefaultSize(int width, int height) { this.width = width; this.height = height; } } /** @} */ }