18 lines
273 B
C#
18 lines
273 B
C#
using MMOserver.Game.Engine;
|
|
|
|
namespace MMOserver.Game.Channel.Maps;
|
|
|
|
public class Robby
|
|
{
|
|
// 마을 시작 지점 넣어 둔다.
|
|
public static Vector3 StartPosition
|
|
{
|
|
get;
|
|
set;
|
|
} = new Vector3(0, 0, 0);
|
|
|
|
public Robby()
|
|
{
|
|
}
|
|
}
|