mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fix struct access
This commit is contained in:
parent
50e58fff5a
commit
f450e3a1c5
2 changed files with 6 additions and 6 deletions
|
@ -6657,8 +6657,8 @@ namespace SDL2
|
|||
[CRepr]
|
||||
public struct SDL_Locale
|
||||
{
|
||||
char8* language;
|
||||
char8* country;
|
||||
public char8* language;
|
||||
public char8* country;
|
||||
}
|
||||
|
||||
[LinkName("SDL_GetPreferredLocales")]
|
||||
|
|
|
@ -245,10 +245,10 @@ namespace SDL2
|
|||
[CRepr]
|
||||
public struct Animation
|
||||
{
|
||||
int32 w;
|
||||
int32 h;
|
||||
SDL.Surface** frames;
|
||||
int32* delays;
|
||||
public int32 w;
|
||||
public int32 h;
|
||||
public SDL.Surface** frames;
|
||||
public int32* delays;
|
||||
}
|
||||
|
||||
[LinkName("IMG_LoadAnimation")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue