/
domahes
/
Arcade
Обзор
Документация
Войти
/
domahes
/
Arcade
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
js/data/DValue.js
16 строк
397 B
domahes
Initial commit with game files
01 июн 2026, 09:31
01 июн 2026, 09:31
0f50ffb
Код
Авторство
О чём код?
/** * Created by Yitian Chen on 2019/1/4. * Data structure of variable */ function DValue(rd){ //variable ID this.id = rd.readInt(); //variable name this.name = rd.readString(); //variable type this.type = rd.readInt(); //default value of variable this.defValue = rd.readString(); //Whether it is a multicycle variable this.staticValue = rd.readBool(); }