bout halfway complete with parserlang, also added userdata to parser
This commit is contained in:
parent
7cfea02681
commit
16821e8411
6 changed files with 190 additions and 44 deletions
|
|
@ -1,5 +1,7 @@
|
|||
#include "arc/input/input.h"
|
||||
|
||||
#include "arc/std/bool.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void ARC_Input_CreateWithEngineData(ARC_Input **input, ARC_EngineData *data){
|
||||
|
|
@ -10,8 +12,9 @@ void ARC_Input_Destroy(ARC_Input *input){
|
|||
printf("No Input Backend Selected\n");
|
||||
}
|
||||
|
||||
void ARC_Input_Update(ARC_Input *input){
|
||||
ARC_Bool ARC_Input_Update(ARC_Input *input){
|
||||
printf("No Input Backend Selected\n");
|
||||
return ARC_True;
|
||||
}
|
||||
|
||||
ARC_Keyboard *ARC_Input_GetKeyboard(ARC_Input *input){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue