feat: started work on city generation

This commit is contained in:
Sara 2024-10-01 10:25:43 +02:00
parent b60cf6cb6c
commit 0ca2972218
2 changed files with 16 additions and 0 deletions

8
src/city_generator.c Normal file
View file

@ -0,0 +1,8 @@
#include "city_generator.h"
#include "core/mesh_render_entity.h"
#include "core/transform_node.h"
SceneNode *GenerateCity() {
SceneNode *node = CreateTransformNode();
return node;
}

8
src/city_generator.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef CITY_GENERATOR_H
#define CITY_GENERATOR_H
#include "core/scene.h"
extern SceneNode *GenerateCity();
#endif // !CITY_GENERATOR_H