18 lines
323 B
C++
18 lines
323 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "HAL/Platform.h"
|
|
|
|
THIRD_PARTY_INCLUDES_START
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define NANOSVG_IMPLEMENTATION
|
|
#include "nanosvg.h"
|
|
|
|
|
|
#define NANOSVGRAST_IMPLEMENTATION
|
|
#include "nanosvgrast.h"
|
|
THIRD_PARTY_INCLUDES_END
|