fixing git repo

This commit is contained in:
kin fuyuki 2025-12-20 23:05:50 -03:00
commit 52b5a8ee95
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401
19 changed files with 106 additions and 10712 deletions

11
engine/src/scenes/nodes.h Normal file
View file

@ -0,0 +1,11 @@
#include "../gr.h"
#include "../aud.h"
#include "../net.h"
struct node{
public:
virtual void init() {}
virtual void render() {}
virtual void update() {}
virtual void close() {}
};