15 lines
131 B
C#
15 lines
131 B
C#
using System;
|
|
|
|
namespace WorldOfPeacecraft
|
|
{
|
|
public class Online
|
|
{
|
|
int o_;
|
|
public Online (int o)
|
|
{
|
|
o_ = o;
|
|
}
|
|
}
|
|
}
|
|
|