This repository has been archived on 2023-02-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
DeathCoordinates/src/com/elnu/DeathInfo.java
2021-11-27 16:23:50 -08:00

23 lines
407 B
Java

package com.elnu;
import org.bukkit.Location;
import java.time.LocalDateTime;
public class DeathInfo {
Location location;
LocalDateTime time;
public DeathInfo(Location location) {
this.location = location;
time = LocalDateTime.now();
}
public Location getLocation() {
return location;
}
public LocalDateTime getTime() {
return time;
}
}