2019-10-24 09:31:59 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2020-06-30 12:36:48 -04:00
|
|
|
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2app"
|
2019-10-24 09:31:59 -04:00
|
|
|
)
|
|
|
|
|
2019-11-06 22:12:15 -05:00
|
|
|
// GitBranch is set by the CI build process to the name of the branch
|
2020-10-26 05:04:50 -04:00
|
|
|
//nolint:gochecknoglobals // This is filled in by the build system
|
2019-11-02 16:15:16 -04:00
|
|
|
var GitBranch string
|
2019-11-06 22:12:15 -05:00
|
|
|
|
|
|
|
// GitCommit is set by the CI build process to the commit hash
|
2020-10-26 05:04:50 -04:00
|
|
|
//nolint:gochecknoglobals // This is filled in by the build system
|
2019-11-02 16:15:16 -04:00
|
|
|
var GitCommit string
|
2019-10-24 09:31:59 -04:00
|
|
|
|
|
|
|
func main() {
|
2020-01-31 23:18:11 -05:00
|
|
|
log.SetFlags(log.Lshortfile)
|
|
|
|
log.Println("OpenDiablo2 - Open source Diablo 2 engine")
|
|
|
|
|
2020-11-01 19:05:50 -05:00
|
|
|
instance := d2app.Create(GitBranch, GitCommit)
|
2020-07-11 11:24:04 -04:00
|
|
|
|
2020-11-01 19:05:50 -05:00
|
|
|
if err := instance.Run(); err != nil {
|
2020-10-28 21:02:12 -04:00
|
|
|
return
|
2020-07-08 09:16:16 -04:00
|
|
|
}
|
2020-06-22 22:17:54 -04:00
|
|
|
}
|