Skip to content
Snippets Groups Projects
Commit 0c01b570 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

mention games

parent ac876795
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -50,7 +50,12 @@
\end{frame}
\begin{frame}[fragile]{Cellular Automata}
\begin{itemize}
\item Some states (2 or more)
\item You need a rule (eg, if at least 4 of your neighbours are alive, then return alive, else return dead.)
\end{itemize}
\begin{minted}[breaklines]{python}
for tile in grid:
neighbors = get_alive_neighbours(tile)
......@@ -67,4 +72,12 @@ for tile in grid:
\section{Full Games}
% games by angileia
\begin{frame}{Full Games}
\begin{itemize}
\item What about games?
\item We can try and generate those to.
\item \url{http://www.gamesbyangelina.org/games/}
\end{itemize}
\end{frame}
\end{document}
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