mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Merge branch 'master' of https://github.com/coelckers/Raze
This commit is contained in:
commit
6c55d8ed69
1 changed files with 6 additions and 6 deletions
|
@ -31,18 +31,18 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
BEGIN_DUKE_NS
|
||||
|
||||
typedef struct {
|
||||
uint16_t frame;
|
||||
int16_t sound;
|
||||
uint16_t frame = 0;
|
||||
int16_t sound = 0;
|
||||
} animsound_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
FString name;
|
||||
double frameaspect1, frameaspect2;
|
||||
uint8_t* animbuf;
|
||||
double frameaspect1 = 0.0, frameaspect2 = 0.0;
|
||||
uint8_t* animbuf = nullptr;
|
||||
TArray<animsound_t> Sounds;
|
||||
uint8_t framedelay;
|
||||
uint8_t frameflags;
|
||||
uint8_t framedelay = 0;
|
||||
uint8_t frameflags = 0;
|
||||
} dukeanim_t;
|
||||
|
||||
extern dukeanim_t* g_animPtr;
|
||||
|
|
Loading…
Reference in a new issue