mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-09-23 07:31:47 +08:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import { CloudLike } from './cloudLike';
|
|
import { SizedCanvasImageSource } from '@motajs/render-core';
|
|
|
|
export class CloudWeather extends CloudLike {
|
|
getImage(): SizedCanvasImageSource | null {
|
|
return core.material.images.images['cloud.png'] ?? null;
|
|
}
|
|
|
|
onDestroy(): void {}
|
|
}
|