Snow fullscreen effect implemented

This commit is contained in:
Mal
2024-12-08 16:53:56 +01:00
parent 4bf46d99fd
commit 4b85a314c4
13 changed files with 250 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
export class FullscreenEffect
{
static NAME = '';
constructor(canvas)
{
this.canvas = canvas;
}
update(timestamp)
{
}
render(context)
{
}
getName()
{
return this.constructor.NAME;
}
}