blob: 9f60efd846aa96f31085e89a0cfab94d86b18ace (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// writereader.h - BGFX alpha/color write state JSON reader
//
//============================================================
#pragma once
#ifndef DRAWBGFX_WRITE_READER
#define DRAWBGFX_WRITE_READER
#include "statereader.h"
class write_reader : public state_reader {
public:
static uint64_t read_from_value(const Value& value);
};
#endif // DRAWBGFX_WRITE_READER
|