summaryrefslogtreecommitdiff
path: root/src/scenes/index.ts
blob: 8544e23b3ad1b70e11f1dfd8cb8408bd1e395c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import title from "./title?scene";
import me from "./me?scene";
import partone from "./partone?scene";
import flirtingwithfunctions from "./flirtingwithfunctions?scene";
import doctor from "./doctor?scene";
import first_box from "./first_box?scene";
import hungry_partner from "./hungry_partner?scene";
import pure_functions from "./pure_functions?scene";

export const scenes = [
  title,
  me,
  partone,
  flirtingwithfunctions,
  doctor,
  first_box,
  hungry_partner,
  pure_functions,
];