diff options
author | Le Philousophe | 2019-03-07 18:45:52 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-06-01 22:43:48 +0200 |
commit | ba6506d8d3b9a171bcf314e8042db89bbda4565e (patch) | |
tree | 7cba8df2561b932e1fa68803e59b0bfc47a3d6e6 /engines/cryomni3d | |
parent | a055268a08d1e277a9335d92aab62e76c3e1e4c8 (diff) | |
download | scummvm-rg350-ba6506d8d3b9a171bcf314e8042db89bbda4565e.tar.gz scummvm-rg350-ba6506d8d3b9a171bcf314e8042db89bbda4565e.tar.bz2 scummvm-rg350-ba6506d8d3b9a171bcf314e8042db89bbda4565e.zip |
CRYOMNI3D: Fix struct declarations
Diffstat (limited to 'engines/cryomni3d')
-rw-r--r-- | engines/cryomni3d/cryomni3d.h | 2 | ||||
-rw-r--r-- | engines/cryomni3d/fixed_image.h | 2 | ||||
-rw-r--r-- | engines/cryomni3d/mouse_boxes.h | 4 | ||||
-rw-r--r-- | engines/cryomni3d/sprites.h | 2 | ||||
-rw-r--r-- | engines/cryomni3d/versailles/engine.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/engines/cryomni3d/cryomni3d.h b/engines/cryomni3d/cryomni3d.h index 0220001eae..9d2c4e98e7 100644 --- a/engines/cryomni3d/cryomni3d.h +++ b/engines/cryomni3d/cryomni3d.h @@ -40,7 +40,7 @@ class OSystem; namespace Common { -class Point; +struct Point; class SeekableReadStream; } diff --git a/engines/cryomni3d/fixed_image.h b/engines/cryomni3d/fixed_image.h index 5690788463..7e3d26655a 100644 --- a/engines/cryomni3d/fixed_image.h +++ b/engines/cryomni3d/fixed_image.h @@ -29,7 +29,7 @@ #include "engines/cryomni3d/objects.h" namespace Graphics { -class Surface; +struct Surface; } namespace CryOmni3D { diff --git a/engines/cryomni3d/mouse_boxes.h b/engines/cryomni3d/mouse_boxes.h index 5e4d49671a..66ddc4af10 100644 --- a/engines/cryomni3d/mouse_boxes.h +++ b/engines/cryomni3d/mouse_boxes.h @@ -27,8 +27,8 @@ #include "common/str.h" namespace Common { -class Point; -class Rect; +struct Point; +struct Rect; } namespace CryOmni3D { diff --git a/engines/cryomni3d/sprites.h b/engines/cryomni3d/sprites.h index eac4be3489..5721ea8532 100644 --- a/engines/cryomni3d/sprites.h +++ b/engines/cryomni3d/sprites.h @@ -33,7 +33,7 @@ class ReadStream; } namespace Graphics { -class Surface; +struct Surface; } namespace CryOmni3D { diff --git a/engines/cryomni3d/versailles/engine.h b/engines/cryomni3d/versailles/engine.h index 4f56fd3a17..34f2c6cb88 100644 --- a/engines/cryomni3d/versailles/engine.h +++ b/engines/cryomni3d/versailles/engine.h @@ -40,7 +40,7 @@ namespace Graphics { class ManagedSurface; -class Surface; +struct Surface; } namespace CryOmni3D { |