Skip to content

Commit

Permalink
Added generic ImVector class
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Jan 16, 2018
1 parent 9af2903 commit 0a47c7f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions imgui/util/ImVector.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package imgui.util;

import cpp.RawPointer;

@:include("linc_imgui.h")
extern class ImVector<T>
{
@:native('Size') public var size : Int;
@:native('Capacity') public var capacity : Int;
@:native('Data') public var data : RawPointer<T>;
}

0 comments on commit 0a47c7f

Please sign in to comment.