Skip to content

Commit

Permalink
+ Repository creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mtax-Development committed Jul 5, 2023
0 parents commit e1b2679
Show file tree
Hide file tree
Showing 88 changed files with 2,146 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.yy linguist-detectable=false
92 changes: 92 additions & 0 deletions GML Interpreter.yyp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions objects/Code/Code.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions objects/Code/Create_0.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
scope = {};
script_path = @"";
16 changes: 16 additions & 0 deletions objects/Code/Draw_64.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
if ((!is_string(script_path)) or (string_length(script_path) <= 0))
{
exit;
}
show_message(string_length(script_path));
var _script = file_to_string(script_path);

if (string_length(_script) > 0)
{
var _interpretation = script_interpret(_script);

if (is_array(_interpretation))
{
script_execute_interpretation(scope, _interpretation);
}
}
24 changes: 24 additions & 0 deletions options/linux/options_linux.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions options/mac/options_mac.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions options/main/options_main.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions options/operagx/options_operagx.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions options/windows/options_windows.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions rooms/Application/Application.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rooms/Application/RoomCreationCode.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//game_end();
Loading

0 comments on commit e1b2679

Please sign in to comment.