mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
11 lines
339 B
TypeScript
11 lines
339 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;
|
|
|
|
readonly defaultSampling: SamplingModeType;
|
|
}
|