blob: 7944245bffc7829301039d406bd3e09b37a765c1 [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.
#include "garnet/bin/ui/scene_manager/resources/memory.h"
namespace scene_manager {
const ResourceTypeInfo Memory::kTypeInfo = {ResourceType::kMemory, "Memory"};
Memory::Memory(Session* session,
scenic::ResourceId id,
const ResourceTypeInfo& type_info)
: Resource(session, id, type_info) {}
} // namespace scene_manager