pxt-calliope/libs/core/pxtcore.h
Michał Moskal cad13785e2 Implement tagged integers in C++ (#813)
* Start on the C++ conversion for tagged ints
2018-05-29 15:55:58 -07:00

17 lines
231 B
C++

#ifndef __PXTCORE_H
#define __PXTCORE_H
#include "MicroBit.h"
#include "MicroBitImage.h"
#include "ManagedString.h"
#include "ManagedType.h"
namespace pxt {
void debuglog(const char *format, ...);
}
#define DMESG NOLOG
#endif