22 lines
398 B
C#
22 lines
398 B
C#
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// D E R E L I C T
|
|
//
|
|
/// // (c) 2003..2024
|
|
|
|
using Godot;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using System;
|
|
|
|
|
|
[GlobalClass]
|
|
public partial class SimpleScreenDef : ScreenGenericDef<SimpleScreenDef, SimpleScreen>
|
|
{
|
|
|
|
[Export]
|
|
public PackedScene Scene;
|
|
|
|
|
|
|
|
}
|