mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
16 lines
508 B
C#
16 lines
508 B
C#
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;
|
|
}
|
|
} |