mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
208df34fc2
- launcher uses json parser from vcmi lib instead of one from Qt #1469 - fixed abilities overrides for some creatures #1476 - fixed hero portraits in seer huts #1402 - ttf fonts will render text in utf-8 mode. Not really useful at this point - new settings entry, available in launcher: encoding. Unused for now.
13 lines
262 B
C++
13 lines
262 B
C++
#pragma once
|
|
|
|
#include <QVariant>
|
|
#include "../lib/JsonNode.h"
|
|
|
|
namespace JsonUtils
|
|
{
|
|
QVariant toVariant(const JsonNode & node);
|
|
QVariant JsonFromFile(QString filename);
|
|
|
|
JsonNode toJson(QVariant object);
|
|
void JsonToFile(QString filename, QVariant object);
|
|
} |