Initial commit

This commit is contained in:
adeliptr 2025-04-21 21:49:04 +09:00
commit 4d80e880fc
8 changed files with 90087 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Cats vs. Mice
Name : Adelia Putri
Student ID : 20210782
Email : adelia@kaist.ac.kr

0
css/style.css Normal file
View File

20
index.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cats vs. Mice</title>
<script src="js/p5.js"></script>
<script src="js/p5.dom.min.js"></script>
<script src="js/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<script defer src="sketch.js"></script>
<body>
</body>
</html>

3
js/p5.dom.min.js vendored Normal file

File diff suppressed because one or more lines are too long

90025
js/p5.js Normal file

File diff suppressed because one or more lines are too long

28
js/p5.sound.min.js vendored Normal file

File diff suppressed because one or more lines are too long

7
sketch.js Normal file
View File

@ -0,0 +1,7 @@
function setup (){
createCanvas (800, 600);
}
function draw(){
}