mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-13 10:38:46 +08:00
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
declare namespace SDK {
|
|
class IImagePoint {
|
|
GetAnimationFrame(): SDK.IAnimationFrame;
|
|
GetName(): string;
|
|
SetName(name: string): void;
|
|
SetX(x: number): void;
|
|
GetX(): number;
|
|
SetY(y: number): void;
|
|
GetY(): number;
|
|
}
|
|
} |