Adding log.gd
This commit is contained in:
parent
eb32d6614e
commit
4522259397
547 changed files with 46844 additions and 0 deletions
28
addons/gdUnit4/test/resources/core/sources/TestPerson.cs
Normal file
28
addons/gdUnit4/test/resources/core/sources/TestPerson.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
using Godot;
|
||||
|
||||
namespace Example.Test.Resources
|
||||
{
|
||||
public partial class TestPerson
|
||||
{
|
||||
|
||||
public TestPerson(string firstName, string lastName)
|
||||
{
|
||||
FirstName = firstName;
|
||||
LastName = lastName;
|
||||
}
|
||||
|
||||
public string FirstName { get; }
|
||||
|
||||
public string LastName { get; }
|
||||
|
||||
public string FullName => FirstName + " " + LastName;
|
||||
|
||||
public string FullName2() => FirstName + " " + LastName;
|
||||
|
||||
public string FullName3()
|
||||
{
|
||||
return FirstName + " " + LastName;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue