gefällt mir
This commit is contained in:
20
resources/MeetingResource.cs
Normal file
20
resources/MeetingResource.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Godot;
|
||||
|
||||
[GlobalClass]
|
||||
public partial class MeetingResource : Resource
|
||||
{
|
||||
[Export]
|
||||
public string Title { get; set; }
|
||||
|
||||
[Export]
|
||||
public Color Color { get; set; }
|
||||
}
|
||||
|
||||
public partial class DummyMeetingResource : MeetingResource
|
||||
{
|
||||
public DummyMeetingResource()
|
||||
{
|
||||
Title = "Dummy Meeting";
|
||||
Color = Colors.Magenta;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user