]> git.tdb.fi Git - netvis.git/blob - source/vector2.h
Resolve IP addresses to hostnames
[netvis.git] / source / vector2.h
1 /* $Id$
2
3 This file is part of NetVis
4 Copyright @ 2008 Mikko Rasa, Mikkosoft Productions
5 Distributed unter the GPL
6 */
7
8 #ifndef VECTOR2_H_
9 #define VECTOR2_H_
10
11 struct Vector2
12 {
13         float x, y;
14
15         Vector2(): x(0), y(0) { }
16         Vector2(float x_, float y_): x(x_), y(y_) { }
17 };
18
19 #endif