#region ================== Copyright (c) 2021 Boris Iwanski /* * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the * * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program.If not, see. */ #endregion #region ================== Namespaces using CodeImp.DoomBuilder.Data; using CodeImp.DoomBuilder.UDBScript.Wrapper; #endregion namespace CodeImp.DoomBuilder.UDBScript.API { struct ImageInfo { #region ================== Variables private string _name; private string _fullname; private int _width; private int _height; private Vector2DWrapper _scale; private bool _isflat; #endregion #region ================== Properties /// /// Name of the image. /// public string name { get { return _name; } } /// /// Width of the image. /// public int width { get { return _width; } } /// /// Height of the image. /// public int height { get { return _height; } } /// /// Scale of the image as `Vector2D`. /// public Vector2DWrapper scale { get { return _scale; } } /// /// If the image is a flat (`true`) or not (`false`). /// public bool isFlat { get { return _isflat; } } #endregion #region ================== Constructors internal ImageInfo(ImageData image) { _name = image.ShortName; _fullname = image.Name; _width = image.Width; _height = image.Height; _scale = new Vector2DWrapper(image.Scale); _isflat = image.IsFlat; } #endregion } }