- Updated functions in class with function create/dispose
This commit is contained in:
Kum1ta
2024-08-25 02:25:50 +02:00
parent 59fc6a9ffb
commit 9b563d4855
6 changed files with 361 additions and 201 deletions

View File

@ -0,0 +1,24 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Page.js :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/25 00:00:21 by edbernar #+# #+# */
/* Updated: 2024/08/25 00:27:21 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */
class Page
{
actualPage = null;
constructor()
{
}
};
export { Page }