Last active
August 29, 2015 14:17
-
-
Save Dalet/8742f00ac9bd587f3054 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Archangel ASL v0.2 | |
*/ | |
state("game") | |
{ | |
/* | |
2 == Saving | |
3 == Loading | |
4 == Finishing | |
5 == Initial loading screen at launch | |
*/ | |
int screen : "game.exe", 0x0008E254, 0x0; | |
} | |
isLoading | |
{ | |
return current.screen >= 2 && current.screen <= 5; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Archangel ASL v0.2 | |
*/ | |
state("game") | |
{ | |
/* | |
2 == Saving | |
3 == Loading | |
4 == Finishing | |
5 == Initial loading screen at launch | |
*/ | |
int screen : "game.exe", 0x0008E254, 0x0; | |
} | |
isLoading | |
{ | |
return current.screen >= 2 && current.screen <= 5 && current.screen != 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment