Markit命令+整理代码树+更新文档

This commit is contained in:
2026-03-14 21:52:47 +08:00
parent fbb90da10e
commit d44fca86a3
14 changed files with 445 additions and 5 deletions

32
utils/LuaApps.cs Normal file
View File

@@ -0,0 +1,32 @@
// The CMLeonOS Project (https://github.com/Leonmmcoset/CMLeonOS)
// Copyright (C) 2025-present LeonOS 2 Developer Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
using IL2CPU.API.Attribs;
namespace CMLeonOS
{
public static class LuaApps
{
[ManifestResourceStream(ResourceName = "CMLeonOS.LuaApps.helloworld.lua")]
public static readonly byte[] helloworld;
[ManifestResourceStream(ResourceName = "CMLeonOS.LuaApps.testspeed.lua")]
public static readonly byte[] testspeed;
[ManifestResourceStream(ResourceName = "CMLeonOS.LuaApps.calculator.lua")]
public static readonly byte[] calculator;
}
}