mirror of
https://github.com/YouHaveTrouble/DiscipleOfLand.git
synced 2026-05-12 06:26:56 +00:00
17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
export default class Aetheryte {
|
|
|
|
readonly position: { x: number, y: number, zone: string };
|
|
readonly name: {
|
|
en: string,
|
|
}
|
|
|
|
constructor(
|
|
data: {position: {x: number, y: number, zone: string}, name: {en: string}}
|
|
) {
|
|
this.position = data.position;
|
|
this.name = data.name;
|
|
}
|
|
|
|
|
|
}
|