Move files

This commit is contained in:
Andras Schmelczer 2022-09-21 13:16:03 +02:00
parent 97ee3c77a5
commit f9540abdef
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
70 changed files with 134 additions and 119 deletions

View file

@ -1,28 +0,0 @@
import platformPosterWebP from '../static/media/platform.png?format=webp';
import platformPosterJpeg from '../static/media/platform.png?format=jpg';
import platformMp4 from '../static/media/mp4/platform.mp4';
import platformWebM from '../static/media/webm/platform.webm';
import { Video } from '../page/basics/video/video';
export const platformGameTimelineElement = {
title: `Platform game`,
date: `2017 autumn`,
figure: new Video({
posterWebP: platformPosterWebP,
posterJpeg: platformPosterJpeg,
mp4: platformMp4,
webm: platformWebM,
}),
description: `A 3D game written in C with the help of SDL 1.2 (I haven't heard of GPU programming at the time).`,
more: [
`
The maps are randomly generated and fully destroyable.
The player is getting chased by flying enemies. Overall, I find it a really enjoyable game.
`,
`
I did this as a homework for my Basics of Programming course.
`,
],
links: [],
};