chore(cleanup): remove dead code and add android build to gitignore

This commit is contained in:
plebeius
2026-02-24 15:15:38 +08:00
parent b5d9db8a66
commit 5bd1dc0e71
11 changed files with 8 additions and 275 deletions
-4
View File
@@ -7,10 +7,6 @@ interface SnowOptions {
// Add this new variable to track manual override
let manualSnowOverride: boolean | null = null;
export const setManualSnowOverride = (value: boolean): void => {
manualSnowOverride = value;
};
export const initSnow = ({ flakeCount }: SnowOptions): void => {
const randomRange = (min: number, max: number): number => {
min = Math.ceil(min);