10 lines
266 B
Haxe
10 lines
266 B
Haxe
|
package externs;
|
||
|
|
||
|
// This class acts as a container for the Rectangle implementation, which will get included
|
||
|
// in the cpp file, and therfore get compiled and linked with the correct flags
|
||
|
@:cppInclude("./RectangleImpl.cpp")
|
||
|
@:keep
|
||
|
class RectangleApi
|
||
|
{
|
||
|
}
|