16 lines
362 B
C#
16 lines
362 B
C#
using System.Collections.Generic;
|
|
using GeometryTD.Definition;
|
|
using UnityEngine;
|
|
|
|
namespace GeometryTD.UI
|
|
{
|
|
public class ItemDescFormContext : UIContext
|
|
{
|
|
public string Title;
|
|
public string TypeText;
|
|
public string Description;
|
|
public int Price;
|
|
public Vector3 TargetPos;
|
|
public List<TagType> Tags;
|
|
}
|
|
} |