adding function module

This commit is contained in:
2021-04-29 17:51:36 +02:00
parent fd53606ffc
commit 87bad32300
2 changed files with 7 additions and 36 deletions

6
function.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include <stdint.h>
#include <string>
const uint32_t function_create(const std::string name);
void function_parameter_add(const uint32_t id, const std::string name, const )