1 //=============================================================================
2 //
3 // Adventure Game Studio (AGS)
4 //
5 // Copyright (C) 1999-2011 Chris Jones and 2011-20xx others
6 // The full list of copyright holders can be found in the Copyright.txt
7 // file, which is part of this source code distribution.
8 //
9 // The AGS source code is provided under the Artistic License 2.0.
10 // A copy of this license can be found in the file License.txt and at
11 // http://www.opensource.org/licenses/artistic-license-2.0.php
12 //
13 //=============================================================================
14 
15 #ifndef __AC_LIPSYNC_H
16 #define __AC_LIPSYNC_H
17 
18 struct SpeechLipSyncLine {
19     char  filename[14];
20     int  *endtimeoffs;
21     short*frame;
22     short numPhonemes;
23 };
24 
25 #endif // __AC_LIPSYNC_H