Commit 588226f4 authored by wildfirecode's avatar wildfirecode

update

parent 4d3ae317
# Egret游戏开发:hello world
## 创建必要的项目结构和文件
在根目录创建`egret`文件夹,用于存放`标准Egret项目`的相关文件。
``` bash
mkdir egret
```
在根目录创建`index.html`文件,这是本地项目访问入口。
进入`egret`文件夹。创建`defs`文件夹,用于存放项目所依赖的代码库的`TypeScript声明文件`。这些文件包括:
- egret.d.ts
- eui.d.ts
- assetsmanager.d.ts
- tween.d.ts
## 代码构建
我们使用`webpack`来进行代码的构建。首先进行仓库初始化。
``` bash
npm init -y
```
接着来安装
``` bash
npm install --save-dev webpack
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment