mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* Completely untested first commit * Get basic program flow working * Add Innocent * Add Fancy Rich Text * Icon Thanks, IcedQuinn! * Add Cartridge icons * New image from IcedQuinn * Add explanation on what a Sophont is, to be automatically appended to any text referencing a Sophont later on * Convert tabs to spaces * remove [bold] tags from loc * Make text bold again * Alter formatting, reduce text length for sophont explanation to fit it on the screen * Update Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl Co-authored-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com> Signed-off-by: Tim Falken <timfalken@hotmail.com> * Add program to more PDA's * Add a tip about the app * Recreate flow in yaml todo: actually load and use this yaml * Remove the old state machine, and add configurable yaml prototypes to define pages * Move page to its own file --------- Signed-off-by: Tim Falken <timfalken@hotmail.com> Co-authored-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com>
17 lines
468 B
C#
17 lines
468 B
C#
using Content.Shared.CartridgeLoader;
|
|
using Content.Server.DeltaV.CartridgeLoader;
|
|
using Content.Server.CartridgeLoader.Cartridges;
|
|
using Content.Server.CartridgeLoader;
|
|
|
|
namespace Content.Server.DeltaV.CartridgeLoader.Cartridges;
|
|
|
|
public sealed class CrimeAssistCartridgeSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly CartridgeLoaderSystem? _cartridgeLoaderSystem = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
}
|
|
}
|