smntc
an in-memory multimodal graph database
Loading...
Searching...
No Matches
Scene.h
Go to the documentation of this file.
1#ifndef __SCENE_HEADER__
2#define __SCENE_HEADER__
3
4#include "Graph.h"
5#include "Colors.h"
6
7struct Scene {
8 unsigned int vertex;
9 struct Graph *graph;
10 struct Colors *colors;
11};
12
13struct Shape Scene_addShape(const struct Scene *this, int *error);
14
15#endif
struct Shape Scene_addShape(const struct Scene *this, int *error)
Definition Scene.c:7
Definition Graph.c:20
Definition Scene.h:7
unsigned int vertex
Definition Scene.h:8
struct Graph * graph
Definition Scene.h:9
struct Colors * colors
Definition Scene.h:10
Definition Shape.h:8