RingRacers/libs/ACSVM/include/ACSVM/Script.cpp
Sally Coolatta 26477941ed Attempt using ACSVM to implement
It's having trouble linking the dll on Windows currently
2022-10-03 01:23:58 -04:00

54 lines
992 B
C++

//-----------------------------------------------------------------------------
//
// Copyright (C) 2015-2017 David Hill
//
// See COPYING for license information.
//
//-----------------------------------------------------------------------------
//
// Script class.
//
//-----------------------------------------------------------------------------
#include "Script.hpp"
#include "Environment.hpp"
#include "Module.hpp"
//----------------------------------------------------------------------------|
// Extern Fumnctions |
//
namespace ACSVM
{
//
// Script constructor
//
Script::Script(Module *module_) :
module{module_},
name{},
argC {0},
codeIdx{0},
flags {0},
locArrC{0},
locRegC{module->env->scriptLocRegC},
type {0},
flagClient{false},
flagNet {false}
{
}
//
// Script destructor
//
Script::~Script()
{
}
}
// EOF