├── .travis.yml ├── LICENSE.txt ├── README.md ├── doc.go ├── example_test.go ├── fsm.go ├── manager.go ├── manager_test.go ├── saveloader.go ├── state.go ├── state_maker.go ├── state_test.go └── statemap.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/doc.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/example_test.go -------------------------------------------------------------------------------- /fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/fsm.go -------------------------------------------------------------------------------- /manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/manager.go -------------------------------------------------------------------------------- /manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/manager_test.go -------------------------------------------------------------------------------- /saveloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/saveloader.go -------------------------------------------------------------------------------- /state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/state.go -------------------------------------------------------------------------------- /state_maker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/state_maker.go -------------------------------------------------------------------------------- /state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/state_test.go -------------------------------------------------------------------------------- /statemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrolavia/botgoram/HEAD/statemap.go --------------------------------------------------------------------------------