1 Star 0 Fork 0

eloncode/TimelineScript

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Program.cs 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
nolan 提交于 2021-02-27 16:10 +08:00 . C#版源码
using System;
using System.Threading;
namespace TimeLineScript
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Interpreter interpreter = new Interpreter();
interpreter.Init();
PlayScheduler scheduler = new PlayScheduler(interpreter);
scheduler.ActivePlay("the_first_play");
int last_tick = Environment.TickCount;
while (true)
{
scheduler.Update((Environment.TickCount - last_tick) * 0.001f);
last_tick = Environment.TickCount;
Thread.Sleep(33);
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eloncode/TimelineScript.git
git@gitee.com:eloncode/TimelineScript.git
eloncode
TimelineScript
TimelineScript
main

搜索帮助