LMAssembly // Add vChewingLM.ReplacableUserDataType enum.

This commit is contained in:
ShikiSuen 2022-12-02 17:50:31 +08:00
parent ed81d80110
commit ae4efede82
1 changed files with 10 additions and 0 deletions

View File

@ -12,4 +12,14 @@ public enum vChewingLM {
enum FileErrors: Error {
case fileHandleError(String)
}
public enum ReplacableUserDataType: String, CaseIterable, Identifiable {
public var id: ObjectIdentifier { .init(rawValue as AnyObject) }
case thePhrases
case theFilter
case theReplacements
case theAssociates
case theSymbols
}
}