Files
METH_Transcendence/site/real_game/class/Video.js
Kum1ta 87f3411af4 Game
- Starting class
2024-08-27 15:26:38 +02:00

27 lines
1.1 KiB
JavaScript

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Video.js :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/26 18:57:00 by hubourge #+# #+# */
/* Updated: 2024/08/27 14:27:27 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */
class Video
{
video = null;
constructor(path)
{
this.video = document.createElement('video');
this.video.src = path;
this.video.muted = true;
this.video.autoplay = true;
this.video.loop = true;
}
}
export { Video };