├── .gitignore ├── Examples └── helloworld │ ├── Makefile │ └── source │ ├── Bridging-Header.h │ └── game.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/swift-switch-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/swift-switch-examples/HEAD/Examples/helloworld/Makefile -------------------------------------------------------------------------------- /Examples/helloworld/source/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/swift-switch-examples/HEAD/Examples/helloworld/source/Bridging-Header.h -------------------------------------------------------------------------------- /Examples/helloworld/source/game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/swift-switch-examples/HEAD/Examples/helloworld/source/game.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/swift-switch-examples/HEAD/README.md --------------------------------------------------------------------------------