1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00
Beef/BeefLibs/Beefy2D/src/widgets/DesignEditableAttribute.bf

16 lines
389 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
using System;
using System.Collections;
2019-08-23 11:56:54 -07:00
using System.Text;
namespace Beefy.widgets
{
public struct DesignEditableAttribute : Attribute
{
public String DisplayType { get; set; }
public String Group { get; set; }
public String DisplayName { get; set; }
public String SortName { get; set; }
public bool DefaultEditString { get; set; }
}
}