Beginnings of a WH40K.EXE implementation

So far, we just play the opening credits on an external video player.
I want to start loading and displaying the menus next. Perhaps I can
get the entire non-gameplay flow working?
This commit is contained in:
2018-10-13 03:24:10 +01:00
parent 019108bff8
commit 73804519b0
5 changed files with 88 additions and 2 deletions

View File

@@ -20,7 +20,10 @@ view-minimap: $(srcfiles)
view-set: $(srcfiles)
go build -o view-set ur.gs/ordoor/cmd/view-set
wh40k: $(srcfiles)
go build -o wh40k ur.gs/ordoor/cmd/wh40k
clean:
rm -f loader view-obj view-map view-minimap view-set
rm -f loader view-obj view-map view-minimap view-set wh40k
.PHONY: all clean