Em chào anh chị, em có một đoạn code:
typedef struct Bullet
{
int Type;
SDL_Rect Orth_Pos_Des_Bullet;
SDL_Rect Iso_Pos_Des_Bullet;
SDL_Rect Pos_Sor_Bullet;
int Speed_Bullet;
SDL_Texture Texture_Bullet;
};
Bullet Object_Bullet;
Filed "Texture_Bullet" has incomplete type 'SDL_Texture';
Em đã tìm hiểu trên mấy trang nước ngoài thì để sửa lỗi thì thấy nếu em khai báo SDL_Texture * Texture_Bullet thì hết lỗi.
Cho em hỏi sao không khai báo con trỏ thì lại lỗi vậy ạ, em cám ơn.