Core/BlobKind.cs

Enum type that defines different kinds of blobs used by the Goo project, represented as a byte. Enumerates categories such as Text, Image, Container, ScenePanel, WebPanel, and others.


namespace Goo;

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