// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System;
using FlaxEngine;
namespace FlaxEditor.Content
{
///
/// Content item that contains data.
///
///
public sealed class AndroidPlatformSettingsItem : JsonAssetItem
{
///
/// Initializes a new instance of the class.
///
/// The asset path.
/// The asset identifier.
/// The Name of the resource type.
public AndroidPlatformSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
}
///
public override SpriteHandle DefaultThumbnail => Editor.Instance.Icons.AndroidSettings128;
}
}