mirror of
https://github.com/YouHaveTrouble/DiscipleOfLand.git
synced 2026-05-12 06:26:56 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export default class Aetheryte {
|
||||
|
||||
readonly position: { x: number, y: number, zone: string };
|
||||
readonly name: {
|
||||
en: string,
|
||||
}
|
||||
|
||||
constructor(
|
||||
data: any,
|
||||
) {
|
||||
this.position = data.position;
|
||||
this.name = data.name.en;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user