Added TODOs
This commit is contained in:
parent
331dd8c4cf
commit
703bf0e0d2
4 changed files with 13 additions and 3 deletions
|
|
@ -28,7 +28,8 @@ namespace Raylib_cs
|
|||
/// Number of channels (1-mono, 2-stereo)
|
||||
/// </summary>
|
||||
public uint channels;
|
||||
|
||||
|
||||
//TODO: SPAN<byte> ?
|
||||
/// <summary>
|
||||
/// Buffer data pointer
|
||||
/// </summary>
|
||||
|
|
@ -42,6 +43,7 @@ namespace Raylib_cs
|
|||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct AudioStream
|
||||
{
|
||||
//TODO: convert
|
||||
/// <summary>
|
||||
/// Pointer to internal data(rAudioBuffer *) used by the audio system
|
||||
/// </summary>
|
||||
|
|
@ -107,6 +109,7 @@ namespace Raylib_cs
|
|||
/// </summary>
|
||||
public int ctxType;
|
||||
|
||||
//TODO span
|
||||
/// <summary>
|
||||
/// Audio context data, depends on type
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -78,10 +78,11 @@ namespace Raylib_cs
|
|||
/// </summary>
|
||||
public Shader shader;
|
||||
|
||||
//TODO: convert
|
||||
/// <summary>
|
||||
/// Material maps
|
||||
/// </summary>
|
||||
public MaterialMap *maps;
|
||||
public MaterialMap* maps;
|
||||
|
||||
/// <summary>
|
||||
/// Material generic parameters (if required)
|
||||
|
|
|
|||
|
|
@ -62,11 +62,13 @@ namespace Raylib_cs
|
|||
/// </summary>
|
||||
public int boneCount;
|
||||
|
||||
//TODO: Span
|
||||
/// <summary>
|
||||
/// Bones information (skeleton, BoneInfo *)
|
||||
/// </summary>
|
||||
public BoneInfo* bones;
|
||||
|
||||
//TODO: Span
|
||||
/// <summary>
|
||||
/// Bones base transformation (pose, Transform *)
|
||||
/// </summary>
|
||||
|
|
@ -88,7 +90,7 @@ namespace Raylib_cs
|
|||
/// Number of animation frames
|
||||
/// </summary>
|
||||
public readonly int frameCount;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Bones information (skeleton, BoneInfo *)
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue