Initial commit for new project

This commit is contained in:
Keenan Turley
2024-12-20 21:19:27 -08:00
commit 58cca5bd6b
10 changed files with 717 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()
{
}
}