Skip to content

Commit 2abff0a

Browse files
committed
fix: update incorrect return types for textmapflags
1 parent e26a538 commit 2abff0a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

WCSharp.Api/texmapflags.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ internal texmapflags()
88
}
99

1010
/// @CSharpLua.Get = "TEXMAP_FLAG_NONE"
11-
public static extern subanimtype None { get; }
11+
public static extern texmapflags None { get; }
1212
/// @CSharpLua.Get = "TEXMAP_FLAG_WRAP_U"
13-
public static extern subanimtype WrapU { get; }
13+
public static extern texmapflags WrapU { get; }
1414
/// @CSharpLua.Get = "TEXMAP_FLAG_WRAP_V"
15-
public static extern subanimtype WrapV { get; }
15+
public static extern texmapflags WrapV { get; }
1616
/// @CSharpLua.Get = "TEXMAP_FLAG_WRAP_UV"
17-
public static extern subanimtype WrapUV { get; }
17+
public static extern texmapflags WrapUV { get; }
1818

1919
/// @CSharpLua.Template = "ConvertTexMapFlags({0})"
2020
public static extern texmapflags Convert(int textMapFlagsId);

0 commit comments

Comments
 (0)