scummvm/engines/ags/engine/ac/dynobj/scriptviewframe.h

32 lines
No EOL
1.1 KiB
C

//=============================================================================
//
// Adventure Game Studio (AGS)
//
// Copyright (C) 1999-2011 Chris Jones and 2011-20xx others
// The full list of copyright holders can be found in the Copyright.txt
// file, which is part of this source code distribution.
//
// The AGS source code is provided under the Artistic License 2.0.
// A copy of this license can be found in the file License.txt and at
// http://www.opensource.org/licenses/artistic-license-2.0.php
//
//=============================================================================
#ifndef __AC_SCRIPTVIEWFRAME_H
#define __AC_SCRIPTVIEWFRAME_H
#include "ac/dynobj/cc_agsdynamicobject.h"
struct ScriptViewFrame final : AGSCCDynamicObject {
int view, loop, frame;
int Dispose(const char *address, bool force) override;
const char *GetType() override;
int Serialize(const char *address, char *buffer, int bufsize) override;
void Unserialize(int index, const char *serializedData, int dataSize) override;
ScriptViewFrame(int p_view, int p_loop, int p_frame);
ScriptViewFrame();
};
#endif // __AC_SCRIPTVIEWFRAME_H