summaryrefslogtreecommitdiffstats
path: root/src/common/struct.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/struct.h')
-rw-r--r--src/common/struct.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/common/struct.h b/src/common/struct.h
index 901651f..76594fe 100644
--- a/src/common/struct.h
+++ b/src/common/struct.h
@@ -48,20 +48,6 @@ struct D3DVERTEX2
};
-struct FPOINT
-{
- float x;
- float y;
-
- FPOINT() { }
- FPOINT(float _x, float _y)
- {
- x = _x;
- y = _y;
- }
-};
-
-
struct ColorHSV
{
float h,s,v;