19 lines
289 B
C#
19 lines
289 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace 贪吃蛇
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 场景更新接口
|
||
|
|
/// </summary>
|
||
|
|
interface ISceneUpdate
|
||
|
|
{
|
||
|
|
void Update()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|