blob: 6fb7157596ef2751583a5e0c5ad8a3236150d4dd [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef BinaryAsset_DEFINED
#define BinaryAsset_DEFINED
#include <cstddef>
struct BinaryAsset {
const char* name;
const void* data;
size_t len;
};
#endif // BinaryAsset_DEFINED