Refactor portfolio and fix grammar
This commit is contained in:
parent
86ddc3d0d8
commit
59a0afbac7
37 changed files with 546 additions and 451 deletions
21
src/data/platform-game.ts
Normal file
21
src/data/platform-game.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import platformJpeg from '../static/media/platform.png?format=jpg';
|
||||
import platformWebP from '../static/media/platform.png?format=webp';
|
||||
|
||||
import { Image } from '../page/basics/image/image';
|
||||
|
||||
export const platformGameTimelineElement = {
|
||||
date: `2017 autumn`,
|
||||
title: `Platform game`,
|
||||
figure: new Image(platformWebP, platformJpeg, `a picture of the app`),
|
||||
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: [],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue