mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-30 05:35:06 -05:00
14 lines
225 B
C
14 lines
225 B
C
#ifndef PMDSKY_WAN_H
|
|
#define PMDSKY_WAN_H
|
|
|
|
#include "util.h"
|
|
|
|
struct wan_animation_frame {
|
|
u8 duration;
|
|
u8 flag;
|
|
u16 frame_id;
|
|
struct vec2_16 offset;
|
|
struct vec2_16 shadow_offset;
|
|
};
|
|
|
|
#endif //PMDSKY_WAN_H
|