Skip to content
Snippets Groups Projects
Commit 04922740 authored by Piers Williams's avatar Piers Williams
Browse files

Merge branch 'master' of git.fossgalaxy.com:ce810/ce810.fosslab.uk

parents 73dce64a cb64377c
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ popd
# compile the slides
pushd slides
latexmk -pdf *.tex
latexmk *.tex
popd
# Move things to the right place
......
......@@ -12,6 +12,8 @@
*.cb2
.*.lb
*.mintedcmd
## Intermediate documents:
*.dvi
*.xdv
......
......@@ -68,19 +68,19 @@
\begin{frame}[fragile]{Entity Definition}
\begin{Verbatim}
\begin{minted}[breaklines]{javascript}
{
"name": "piece", - it's called 'piece'
"name": "piece", // it's called 'piece'
"properties": {
"ter-playzone": 1, - it can 'walk' on playzone tiles
"health": 1 - it has 1 health (things with no health die)
"ter-playzone": 1, // it can 'walk' on playzone tiles
"health": 1 // it has 1 health (things with no health die)
},
"_actions":[
"Jump[tick]", - Jump Action (defined in Java)
"Clone[tick]" - Clone action (defined in Java)
"Jump[tick]", // Jump Action (defined in Java)
"Clone[tick]" // Clone action (defined in Java)
]
},
\end{Verbatim}
\end{minted}
\end{frame}
......
$pdf_mode = 1;
$pdflatex = 'lualatex --shell-escape %O %S';
$silent = 1;
......@@ -9,7 +9,7 @@
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{fancyvrb}
\usepackage{minted}
\usepackage{tabularx}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment