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