aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim-Source/OpenSim.Scripting/EmbeddedJVM/Types/PrimitiveTypes/Int.cs
blob: 4ecd325fffdf6c2350349c7df84ee22cc16370e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.Scripting.EmbeddedJVM.Types.PrimitiveTypes
{
    public class Int : BaseType
    {
        public int mValue = 0;

        public Int()
        {

        }
    }
}