mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-15 11:31:37 +08:00
9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
declare namespace SDK {
|
|
class ICollisionPoly {
|
|
Reset(): void;
|
|
IsDefault(): boolean;
|
|
|
|
GetPoints(): number[];
|
|
SetPoints(arr: number[]): void;
|
|
}
|
|
} |