-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e62c3ce
commit 85cd2e5
Showing
16 changed files
with
103 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
test/bin/cpp/* | ||
test/bin/* | ||
.vscode/ | ||
.zed/ | ||
|
||
ndlls/*/bin | ||
ndlls/*/obj | ||
|
||
!test/bin/cpp/images/ | ||
!test/bin/cpp/sound/ | ||
!test/bin/images/ | ||
!test/bin/sound/ |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package raylib; | ||
|
||
/** | ||
* Trace log level | ||
* NOTE: Organized by priority level | ||
*/ | ||
enum abstract TraceLogLevel(Int) to Int from Int { | ||
/** | ||
* Display all logs | ||
*/ | ||
var LOG_ALL:Int = 0; | ||
|
||
/** | ||
* Trace logging, intended for internal use only | ||
*/ | ||
var LOG_TRACE:Int; | ||
|
||
/** | ||
* Debug logging, used for internal debugging it should be disabled on release builds | ||
*/ | ||
var LOG_DEBUG:Int; | ||
|
||
/** | ||
* Info logging, used for program execution info | ||
*/ | ||
var LOG_INFO:Int; | ||
|
||
/** | ||
* Warning logging, used on recoverable failures | ||
*/ | ||
var LOG_WARNING:Int; | ||
|
||
/** | ||
* Error logging, used on unrecoverable failures | ||
*/ | ||
var LOG_ERROR:Int; | ||
|
||
/** | ||
* Fatal logging, used to abort program: exit(EXIT_FAILURE) | ||
*/ | ||
var LOG_FATAL:Int; | ||
|
||
/** | ||
* Disable logging | ||
*/ | ||
var LOG_NONE:Int; | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
-cp src | ||
-D analyzer-optimize | ||
-main Main | ||
--cpp bin/cpp | ||
--cpp bin | ||
--library flixel-raylib | ||
--cmd cd bin | ||
--cmd cd cpp | ||
--cmd main.exe |
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
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
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