cocos creator游戏开发基础学习笔记

本文是基于b站视频BV14i4y1o7YF的学习笔记。typescript学习记录// 枚举 enum PlayerState { idle, run, death, attach, } // 抽象 abstract class Person { name: string ...