Files

12 lines
350 B
Swift
Raw Permalink Normal View History

extension Lua {
/// A constant published on a registered class.
public enum ClassValue {
/// An integer constant.
case int(name: String, value: UInt32)
/// A floating-point constant.
case float(name: String, value: Float)
/// A string constant.
case string(name: String, value: String)
}
}