mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
9 lines
156 B
C#
9 lines
156 B
C#
using System;
|
|
|
|
namespace Cosmos.Shared {
|
|
public class SharedSomething {
|
|
public int GetTheNumber() {
|
|
return 42;
|
|
}
|
|
}
|
|
}
|