| 123456789101112131415161718 |
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- namespace Urho
- {
- public partial class IndexBuffer
- {
- public void SetData (short [] vertexData)
- {
- unsafe {
- fixed (short *p = &vertexData [0]){
- SetData ((void *) p);
- }
- }
- }
- }
- }
|