diff options
author | johndoe123 | 2014-03-21 17:21:55 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
commit | 762be35a364fe66359d29b85b650c6e7add80e47 (patch) | |
tree | 61a1d7dd5849f7d79f961f4f46ce77036a88ade9 /engines/illusions/scriptresource.h | |
parent | 43cd806f17377d5244e575b863519f013e5f033c (diff) | |
download | scummvm-rg350-762be35a364fe66359d29b85b650c6e7add80e47.tar.gz scummvm-rg350-762be35a364fe66359d29b85b650c6e7add80e47.tar.bz2 scummvm-rg350-762be35a364fe66359d29b85b650c6e7add80e47.zip |
ILLUSIONS: Add more script opcodes and fix/add stuff along the way
- Unload backgrounds
- Add transparent sprite drawing
- Add AbortableThread
Diffstat (limited to 'engines/illusions/scriptresource.h')
-rw-r--r-- | engines/illusions/scriptresource.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/illusions/scriptresource.h b/engines/illusions/scriptresource.h index 8a689a97a9..79c46c82a7 100644 --- a/engines/illusions/scriptresource.h +++ b/engines/illusions/scriptresource.h @@ -45,9 +45,12 @@ class Properties { public: Properties(); void init(uint count, byte *properties); + bool get(uint32 propertyId); + void set(uint32 propertyId, bool value); public: uint _count; byte *_properties; + void getProperyPos(uint32 propertyId, uint &index, byte &mask); }; class BlockCounters { |