mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
8 lines
219 B
JavaScript
Executable File
8 lines
219 B
JavaScript
Executable File
import Grammar from "../serialization/Grammar.js"
|
|
import SymbolEntity from "./SymbolEntity.js"
|
|
|
|
export default class EnumEntity extends SymbolEntity {
|
|
|
|
static grammar = Grammar.symbol.map(v => new this(v))
|
|
}
|