补全注释

This commit is contained in:
子沐呀
2024-07-10 11:26:24 +08:00
Unverified
parent 2d5e6736d7
commit a5fe6c5a39
2 changed files with 45 additions and 1 deletions
+9
View File
@@ -1027,6 +1027,9 @@ interface Player {
/** 随机丢出位置 */
randomly: boolean | undefined
): boolean;
/** (GMLIB)获取玩家的rumtimeId */
getRuntimeId(): number;
}
interface Entity {
@@ -1070,6 +1073,12 @@ interface Entity {
/** 实体对象 */
entity: Entity
): boolean;
/** (GMLIB)获取实体的rumtimeId */
getRuntimeId(): number;
/** (GMLIB)获取实体的命名 */
getNameTag(): string;
}
interface Block {