This file contains hidden or 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
/******************************************************************************************* | |
* | |
* raylib - sample game: space invaders | |
* | |
* Based on Sample game developed by Ian Eito, Albert Martos and Ramon Santamaria | |
* Modifed by Monster Brain (monsterbraininc.com) - 2018 | |
* | |
* This game has been created using raylib v1.3 (www.raylib.com) | |
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) | |
* |
This file contains hidden or 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
._DS* | |
*DS_Store* | |
build | |
install | |
extern | |
node-* | |
references |
This file contains hidden or 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
CFLAGS=-Wall -Wextra -pedantic -ansi -g | |
main: file_logger.o string_logrecord.o | |
main.o: ilogger.h file_logger.h string_logrecord.h | |
file_logger.o: ilogger.h file_logger.h | |
string_logrecord.o: ilogger.h string_logrecord.h |
This file contains hidden or 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
grammar UnrealScript; | |
program : classdecl | |
( declarations | replicationblock | body)* | |
( defaultpropertiesblock )? | |
; | |
// CLASS | |
classdecl : CLASS identifier ( EXTENDS packageidentifier )? ( classparams )* ';'; | |
classparams : constclassparams | |
| WITHIN packageidentifier |