├── .gitignore ├── Documentation ├── demo.gif ├── recording.gif └── snapshot.png ├── LICENSE ├── README.md ├── convert.py └── src └── main ├── kotlin ├── Board.kt ├── DrawPanel.kt ├── GUI.kt ├── Main.kt ├── Snapshot.kt └── Utils.kt └── resources └── Icons ├── Error.png ├── File.png ├── Grid_Lines.png ├── Next.png ├── Open.png ├── Random.png ├── Record.png ├── Recording.png ├── Reset.png ├── Save.png ├── Snapshot.png ├── Zoom_In.png ├── Zoom_Out.png └── recordrecording.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/Documentation/demo.gif -------------------------------------------------------------------------------- /Documentation/recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/Documentation/recording.gif -------------------------------------------------------------------------------- /Documentation/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/Documentation/snapshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/convert.py -------------------------------------------------------------------------------- /src/main/kotlin/Board.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/Board.kt -------------------------------------------------------------------------------- /src/main/kotlin/DrawPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/DrawPanel.kt -------------------------------------------------------------------------------- /src/main/kotlin/GUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/GUI.kt -------------------------------------------------------------------------------- /src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /src/main/kotlin/Snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/Snapshot.kt -------------------------------------------------------------------------------- /src/main/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/kotlin/Utils.kt -------------------------------------------------------------------------------- /src/main/resources/Icons/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Error.png -------------------------------------------------------------------------------- /src/main/resources/Icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/File.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Grid_Lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Grid_Lines.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Next.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Open.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Random.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Record.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Recording.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Reset.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Save.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Snapshot.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Zoom_In.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Zoom_In.png -------------------------------------------------------------------------------- /src/main/resources/Icons/Zoom_Out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/Zoom_Out.png -------------------------------------------------------------------------------- /src/main/resources/Icons/recordrecording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexEidt/Game-of-Life-Simulator/HEAD/src/main/resources/Icons/recordrecording.gif --------------------------------------------------------------------------------