Project Init

This commit is contained in:
Relicjamin
2026-04-02 16:02:24 -04:00
commit bb4084d544
10 changed files with 745 additions and 0 deletions

3
Code/Assembly.cs Normal file
View File

@@ -0,0 +1,3 @@
global using Sandbox;
global using System.Collections.Generic;
global using System.Linq;

9
Code/MyComponent.cs Normal file
View File

@@ -0,0 +1,9 @@
public sealed class MyComponent : Component
{
[Property] public string StringProperty { get; set; }
protected override void OnUpdate()
{
}
}