Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

9 lines
296 B
TypeScript

/** Represents a texture created by the renderer.
* @see {@link https://www.construct.net/en/make-games/manuals/construct-3/scripting/scripting-reference/graphics-interfaces/itexture | ITexture documentation } */
declare class ITexture
{
readonly width: number;
readonly height: number;
}