forked from Crockan/MercuryToolbox
chore(release): prepare public source release
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>disable</ImplicitUsings>
|
||||
<Nullable>disable</Nullable>
|
||||
<AssemblyName>FixtureSupport</AssemblyName>
|
||||
<DebugType>none</DebugType>
|
||||
<RootNamespace>MercuryFixture.Support</RootNamespace>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,22 @@
|
||||
namespace MercuryFixture.Support;
|
||||
|
||||
public interface ILaunchable
|
||||
{
|
||||
}
|
||||
|
||||
public abstract class LaunchVehicleBase
|
||||
{
|
||||
public int QueueSize;
|
||||
protected int HiddenCounter;
|
||||
|
||||
public virtual string StartLaunch(int count)
|
||||
{
|
||||
HiddenCounter += count;
|
||||
return $"launch:{count}";
|
||||
}
|
||||
|
||||
protected void FinishLaunch()
|
||||
{
|
||||
HiddenCounter += 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user