2026-06-13 19:45:36 +10:00
|
|
|
#include "../../include/ground.h"
|
|
|
|
|
|
|
|
|
|
void _GroundProgramExecute(GroundProgram* program, GroundState* state) {
|
2026-06-15 20:27:50 +10:00
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
|
// - Preprocess functions
|
|
|
|
|
// - Preprocess structs
|
|
|
|
|
// - Add them to state
|
|
|
|
|
|
|
|
|
|
Ground.Internal.run(program, state);
|
2026-06-13 19:45:36 +10:00
|
|
|
}
|