netpoet coop and 64kode

This commit is contained in:
2026-04-19 00:41:25 +02:00
parent 8d0ab5b7cc
commit 227ea3bf05
367 changed files with 364128 additions and 0 deletions

25
64kode/src/Core/If.h Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
namespace kode64
{
BEGIN_NODE(Core, If)
BEGIN_EXEC
if (Read<bool>(BoolExpr))
{
Run(True);
}
else
{
Run(False);
};
END_EXEC
PIN_EXEC(True);
PIN_EXEC(False);
PIN_INPUT(BoolExpr, false);
END_NODE
}