#ifndef __VECTOR2_H__ #define __VECTOR2_H__ typedef struct Vector2 Vector2; struct Vector2 { float x; float y; }; struct JSONNode; Vector2 Vector2_withValues(float x, float y); Vector2 Vector2_fromJSON(struct JSONNode * node); #endif