bp-prism-game
Version:
The BP Prism Game
34 lines (33 loc) • 484 B
TypeScript
/**
* The Asset Align Enum
*/
export declare enum AssetAlignEnum {
/**
* Left
*/
left = "left",
/**
* Left Third
*/
leftThird = "leftThird",
/**
* Left Fourth
*/
leftFourth = "leftFourth",
/**
* right
*/
right = "right",
/**
* right Third
*/
rightThird = "rightThird",
/**
* right Fourth
*/
rightFourth = "rightFourth",
/**
* Center
*/
center = "center"
}