Core/BlobKind.cs

An enum type defining different blob kinds used by the Goo namespace, represented as a byte. It lists content types like Text, Image, Container, UI panels and simple geometry kinds.


namespace Goo;

public enum BlobKind : byte
{
    None = 0,
    Text,
    Container,
    Image,
    ScenePanel,
    SvgPanel,
    Sector,
    Arc,
    Polygon,
    WebPanel,
    TextEntry,
    Cell,
}