summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Props/PropBase.cs
blob: f971ed5c9985705786da61c0d51cc4221f5ef3d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PropBase : MonoBehaviour
{
	#region 序列化
	
	#endregion 
	
	#region 公共字段
	
	#endregion
	
	#region 私有字段
	
	#endregion
	
	private void Awake() 
	{
		// 私有字段赋值
		
		// 公共字段赋值
		
		// 初始化
	}

}