prelimevent.cs
来自「c#设计模式随书源码 c#设计模式随书源码」· CS 代码 · 共 27 行
CS
27 行
using System;
namespace Seeding
{
/// <summary>
/// Summary description for PrelimEvent.
/// </summary>
public class PrelimEvent:Event
{
public PrelimEvent(string filename, int lanes):base(filename,lanes) {
}
//return circle seeding
public override Seeding getSeeding() {
return new CircleSeeding(swimmers, numLanes);
}
public override bool isPrelim() {
return true;
}
public override bool isFinal() {
return false;
}
public override bool isTimedFinal() {
return false;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?