mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-10-09 12:31:47 +08:00
15 lines
470 B
TypeScript
15 lines
470 B
TypeScript
import { WeatherController } from './controller';
|
|
import { CloudWeather, RainWeather } from './presets';
|
|
|
|
export function createWeather() {
|
|
WeatherController.register('cloud', CloudWeather);
|
|
WeatherController.register('rain', RainWeather);
|
|
// WeatherController.register('snow', SnowWeather);
|
|
// WeatherController.register('sun', SunWeather);
|
|
}
|
|
|
|
export * from './presets';
|
|
export * from './controller';
|
|
export * from './types';
|
|
export * from './weather';
|