Code/Core/BlobKind.cs

Enum type that defines different blob kinds used by the Goo system, represented as a byte. Lists possible content types like Text, Image, ScenePanel, various geometric types, WebPanel, and others.


namespace Goo;

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