mirror of
https://github.com/tonytins/tomas.git
synced 2025-04-30 03:31:39 -04:00
15 lines
337 B
C#
15 lines
337 B
C#
// TOMAS is licensed under the MPL 2.0 license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
namespace Tomas.Kernel.Programs
|
|
{
|
|
public class BasicApp : App
|
|
{
|
|
public BasicApp(Kernel system) : base(system) { }
|
|
|
|
public override void Start()
|
|
{
|
|
base.Start();
|
|
}
|
|
}
|
|
}
|