4bec71dcf4
Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
14 lines
228 B
Swift
14 lines
228 B
Swift
// The Swift Programming Language
|
|
// https://docs.swift.org/swift-book
|
|
|
|
public enum ValueType {
|
|
case Boolean(Bool)
|
|
}
|
|
|
|
public struct Value {
|
|
public var value_type: ValueType
|
|
}
|
|
|
|
public class Packet {
|
|
public init() {}
|
|
} |