mirror of
https://github.com/make-42/hayai.git
synced 2025-03-25 13:13:20 +01:00
17 lines
165 B
Go
17 lines
165 B
Go
package main
|
|
|
|
import (
|
|
"hayai/config"
|
|
|
|
"hayai/render"
|
|
"hayai/waves"
|
|
"hayai/wolfx"
|
|
)
|
|
|
|
func main() {
|
|
config.Init()
|
|
waves.Init()
|
|
render.Init()
|
|
wolfx.Listen()
|
|
}
|