12 lines
266 B
C#
12 lines
266 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct RawResourceHarvestedSignal
|
|
{
|
|
public int RawResourceId;
|
|
|
|
public RawResourceHarvestedSignal(int rawResourceId)
|
|
{
|
|
RawResourceId = rawResourceId;
|
|
}
|
|
}
|
|
} |