Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
export abstract class accessory {
|
||||
public type: string
|
||||
public typeId: number
|
||||
|
||||
constructor(type: string, typeId: number) {
|
||||
this.type = type
|
||||
this.typeId = typeId
|
||||
}
|
||||
|
||||
abstract setName(name)
|
||||
abstract setValue(key, value)
|
||||
abstract update()
|
||||
}
|
||||
Reference in New Issue
Block a user