Rotator entity

This commit is contained in:
barsdeveloper
2022-09-26 22:27:53 +02:00
parent e0186fc408
commit 49ae73827f
19 changed files with 279 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
import IEntity from "./IEntity"
export default class RotatorEntity extends IEntity {
static attributes = {
R: Number,
P: Number,
Y: Number,
}
}