You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
12 lines
210 B
C++
12 lines
210 B
C++
|
|
#pragma once
|
|
|
|
#include "Shape.h"
|
|
|
|
namespace msdfgen {
|
|
|
|
bool saveSvgShape(const Shape &shape, const char *filename);
|
|
bool saveSvgShape(const Shape &shape, const Shape::Bounds &bounds, const char *filename);
|
|
|
|
}
|