blob: 2b8f61d5ba322a513b173dc3519ef412e5fd7544 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_BIN_UI_SKETCHY_RESOURCES_TYPES_H_
#define GARNET_BIN_UI_SKETCHY_RESOURCES_TYPES_H_
#include <cstdint>
#include "lib/escher/base/type_info.h"
namespace sketchy_service {
using ResourceId = uint32_t;
enum class ResourceType {
kResource = 1 << 0,
kImportNode = 1 << 1,
kStrokeGroup = 1 << 2,
kStroke = 1 << 3,
};
typedef escher::TypeInfo<ResourceType> ResourceTypeInfo;
} // namespace sketchy_service
#endif // GARNET_BIN_UI_SKETCHY_RESOURCES_TYPES_H_